/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1e3a5f;
    --primary-light: #2c5282;
    --accent: #d97706;
    --accent-hover: #b45309;
    --bg: #faf7f2;
    --bg-white: #ffffff;
    --text: #1a1a1a;
    --text-light: #5a5a5a;
    --border: #e8e0d5;
    --radius: 10px;
    --shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
    --shadow-hover: 0 8px 24px rgba(30, 58, 95, 0.14);
    --max-width: 960px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
}

a { 
    color: var(--primary-light); 
    text-decoration: none; 
    position: relative;
    transition: color 0.2s ease;
}
a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.25s ease;
}
a:hover { 
    text-decoration: none; 
    color: var(--accent); 
}
a:hover::after {
    width: 100%;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Header & Nav ===== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    text-decoration: none;
}

.logo:hover { text-decoration: none; }
.logo-img { height: 36px; width: auto; }

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
}

/* Single link items (About Us, Contact) */
.nav-list > li > a {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    background: rgba(30, 58, 95, 0.06);
    color: var(--primary);
    text-decoration: none;
}

/* Dropdown groups */
.nav-dropdown { position: relative; }

.dropdown-toggle {
    background: none;
    border: none;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.dropdown-toggle:hover {
    background: rgba(30, 58, 95, 0.06);
    color: var(--primary);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 200px;
    padding: 0.4rem 0;
    z-index: 200;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(30, 58, 95, 0.06);
    color: var(--primary);
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    padding: 0.4rem 0.75rem;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: var(--radius);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4) 0%, rgba(44, 82, 130, 0.6) 100%),
                url('/media/images/hero-4men.jpg');
    background-size: cover;
    background-position: center;
    padding: 5.5rem 0;
    text-align: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 95, 0.3);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 { 
    font-size: 2.75rem; 
    margin-bottom: 1.25rem; 
    font-weight: 800; 
    letter-spacing: -0.02em;
}
.hero p { 
    font-size: 1.2rem; 
    max-width: 620px; 
    margin: 0 auto; 
    opacity: 0.92; 
    line-height: 1.85; 
}

/* ===== Section Dividers ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 0 auto;
    max-width: 200px;
}

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-white); }

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 4rem 0;
    color: #fff;
}

h1 { 
    font-size: 2.2rem; 
    margin-bottom: 0.75rem; 
    font-weight: 800; 
    letter-spacing: -0.01em;
}
h2 { 
    font-size: 1.45rem; 
    margin-bottom: 1.2rem; 
    color: var(--primary); 
    font-weight: 700;
}
h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

.section > .container > h2 { margin-bottom: 2.5rem; }

/* ===== Grid & Cards ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.02);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn:hover { 
    text-decoration: none; 
    transform: scale(1.03);
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }

.btn-small { padding: 0.4rem 1rem; font-size: 0.85rem; }

/* ===== Meeting Cards ===== */
.meeting-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.meeting-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}

.meeting-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-warning { background: #fef3c7; color: #92400e; }

.meeting-details { margin-bottom: 1rem; }
.detail-row { padding: 0.25rem 0; }
.detail-row strong { color: var(--text-light); font-weight: 500; }

.meeting-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== Story Cards ===== */
.story-card {
    max-width: 720px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.25rem;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.story-body p { margin-bottom: 1.4rem; }
.story-body strong { color: var(--text); }

/* ===== Info Box ===== */
.info-box {
    background: rgba(30, 58, 95, 0.04);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.info-box ul { padding-left: 1.25rem; }
.info-box li { margin-bottom: 0.5rem; }

/* ===== Disclaimer ===== */
.disclaimer-box {
    background: rgba(217, 119, 6, 0.06);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-top: 2rem;
}

.disclaimer-box h3 { color: var(--accent-hover); margin-bottom: 0.5rem; }

/* ===== Quote ===== */
.quote { 
    font-family: Georgia, 'Times New Roman', serif; 
    font-size: 1.15rem; 
    font-style: italic;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3.5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-contact a { color: rgba(255, 255, 255, 0.95); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links h4,
.footer-social h4 { 
    color: #fff; 
    margin-bottom: 0.75rem; 
    font-size: 0.95rem; 
    text-transform: uppercase; 
    letter-spacing: 0.04em;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
}

.social-links a:hover { 
    background: var(--accent); 
    transform: scale(1.1);
    text-decoration: none; 
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    text-align: center;
}

/* ===== Responsive ===== */

/* ===== Crisis Banner ===== */
.crisis-banner {
    background: #fef2f2;
    border-top: 2px solid #dc2626;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #7f1d1d;
}

.crisis-banner .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.crisis-banner p {
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.crisis-banner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.crisis-banner li {
    margin: 0;
}

.crisis-banner a {
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
}

.crisis-banner a:hover {
    color: #991b1b;
}


/* ===== Testimonials ===== */
.testimonial-card {
    text-align: center;
    padding: 2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-card strong {
    color: var(--primary);
    font-size: 0.95rem;
}

/* Override card text-align for testimonials */
.grid-3 .card[style*="text-align:center"] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .crisis-banner ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    
    .hero h1 { font-size: 1.85rem; }
    .hero { padding: 4rem 0; }
    .hero p { font-size: 1.05rem; }
    
    .main-nav .nav-list { display: none; flex-direction: column; align-items: stretch; }
    .menu-toggle { display: block; }
    
    .main-nav.open .nav-list {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        padding: 0.5rem 1rem;
        box-shadow: var(--shadow-hover);
    }

    .main-nav.open .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
    }
    
    .footer-inner { grid-template-columns: 1fr; }
}
