/* ================================================================
   NAMO GROUP FOUNDATION - Main Stylesheet
   Theme: White & Orange | Font: Inter
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #E65C00;
    --primary-dark: #c44d00;
    --primary-light: #ff8c42;
    --primary-bg: #fff5ee;
    --white: #ffffff;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(230,92,0,0.18);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    --font: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--dark); line-height: 1.7; overflow-x: hidden; }

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--dark);
    color: #e5e7eb;
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 2px solid var(--primary);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.top-bar a { color: #e5e7eb; text-decoration: none; }
.top-bar i { color: var(--primary); margin-right: 4px; }

/* Google Translate Override */
#google_translate_element select { background: var(--primary); color: white; border: none; padding: 3px 8px; border-radius: 4px; font-size: 12px; cursor: pointer; outline: none; }
.goog-te-gadget { margin: 0 !important; color: transparent !important; }
.goog-te-gadget span { display: inline-block !important; color: transparent !important; }
.goog-te-gadget span a { display: none !important; } /* Hide the 'Powered by' */

/* ---- HEADER & NAV ---- */
header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary);
}
nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 5%; gap: 15px; max-width: 1400px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 55px; width: auto; object-fit: contain; }
.logo-text { line-height: 1.15; }
.logo-text .org-name { color: var(--primary); font-weight: 900; font-size: 19px; letter-spacing: 0.5px; display: block; }
.logo-text .org-sub { color: var(--gray); font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 5px; }
.nav-links li > a, .nav-links li > button {
    text-decoration: none; color: var(--dark); font-weight: 600; font-size: 14px;
    padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition);
    background: none; border: none; cursor: pointer; display: block; white-space: nowrap;
}
.nav-links li > a:hover, .nav-links li > a.active { background: var(--primary-bg); color: var(--primary); }
.nav-links .btn-join { background: var(--primary); color: white !important; border-radius: 25px !important; padding: 8px 20px !important; }
.nav-links .btn-join:hover { background: var(--primary-dark) !important; transform: translateY(-2px); }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--dark); background: none; border: none; padding: 5px; }

/* ---- HERO SLIDER ---- */
.hero-slider { position: relative; width: 100%; height: 580px; overflow: hidden; }
.slides-container { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.8s ease; z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(230,92,0,0.4) 100%); }
.slide-content { position: relative; z-index: 2; text-align: center; color: white; max-width: 800px; padding: 30px; animation: slideUp 0.8s ease; }
.slide-content h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 15px; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.slide-content p { font-size: clamp(1rem, 2.5vw, 1.3rem); margin-bottom: 25px; opacity: 0.95; }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.slide-btn { display: inline-block; background: var(--primary); color: white; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: var(--transition); border: 2px solid transparent; }
.slide-btn:hover { background: transparent; border-color: white; transform: translateY(-3px); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.25); backdrop-filter: blur(8px); border: 2px solid rgba(255,255,255,0.5); color: white; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 20px; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; transition: var(--transition); }
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ---- SECTIONS ---- */
section { padding: 70px 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-divider { width: 60px; height: 4px; background: var(--primary); margin: 15px auto; border-radius: 2px; }

/* ---- ACTIVITY FEED ---- */
.activity-section { background: var(--light-gray); }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 25px; }
.activity-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.activity-card img { width: 100%; height: 220px; object-fit: cover; }
.activity-body { padding: 22px; }
.activity-body .date-tag { font-size: 12px; font-weight: 600; color: var(--primary); background: var(--primary-bg); padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.activity-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.activity-body p { color: var(--gray); font-size: 14px; margin-bottom: 15px; }
.activity-actions { display: flex; gap: 10px; border-top: 1px solid var(--border); padding-top: 12px; }
.activity-actions button { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 5px; transition: var(--transition); padding: 5px; }
.activity-actions button:hover { color: var(--primary); }
.view-all-wrap { text-align: center; margin-top: 40px; }

/* ---- OBJECTIVES ---- */
.objectives-section { background: white; }
.obj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 25px; }
.obj-item { text-align: center; padding: 35px 20px; border-radius: var(--radius); border: 2px solid var(--border); transition: var(--transition); cursor: default; }
.obj-item:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-8px); }
.obj-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; transition: var(--transition); }
.obj-item:hover .obj-icon { background: var(--primary); }
.obj-icon i { font-size: 28px; color: var(--primary); transition: var(--transition); }
.obj-item:hover .obj-icon i { color: white; }
.obj-item h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.obj-item p { font-size: 13px; color: var(--gray); }

/* ---- PM MESSAGE ---- */
.pm-section { background: linear-gradient(135deg, #1a1a2e 0%, #E65C00 100%); color: white; padding: 70px 0; }
.pm-box { display: flex; align-items: center; gap: 40px; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); }
.pm-photo img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 5px solid var(--primary); box-shadow: 0 0 0 4px rgba(255,255,255,0.2); flex-shrink: 0; }
.pm-quote blockquote { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-style: italic; line-height: 1.7; margin-bottom: 15px; }
.pm-quote blockquote::before { content: '"'; font-size: 4rem; color: var(--primary); line-height: 0; vertical-align: -0.6em; margin-right: 5px; }
.pm-quote cite { font-size: 14px; font-weight: 600; opacity: 0.8; }

/* ---- MANAGEMENT TEAM ---- */
.team-section { background: var(--primary-bg); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 25px; }
.team-card { text-align: center; background: white; padding: 30px 20px; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 4px solid var(--primary); margin-bottom: 15px; }
.team-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-card p { font-size: 13px; color: var(--primary); font-weight: 600; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: white; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 25px; }
.testi-card { background: var(--light-gray); border-radius: var(--radius); padding: 30px; border-left: 5px solid var(--primary); position: relative; }
.testi-stars { color: #f59e0b; margin-bottom: 10px; font-size: 14px; }
.testi-msg { font-style: italic; color: var(--dark); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary); }
.testi-author h4 { font-weight: 700; font-size: 15px; color: var(--dark); }
.testi-author p { font-size: 12px; color: var(--gray); }

/* ---- SOCIAL FEEDS ---- */
.social-feeds-section { background: var(--light-gray); }
.social-feed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.social-feed-box { background: white; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); }
.social-feed-box h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; }
.social-feed-box h3 .fb-icon { color: #1877f2; font-size: 1.3rem; }
.social-feed-box h3 .ig-icon { color: #E1306C; font-size: 1.3rem; }
.social-placeholder { text-align: center; padding: 40px; color: var(--gray); }
.social-placeholder i { font-size: 3rem; margin-bottom: 10px; opacity: 0.4; }

/* ---- MEMBER REGISTRATION MODAL ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 5000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.hidden { display: none; }
.modal-box { background: white; border-radius: 20px; width: 100%; max-width: 780px; max-height: 90vh; overflow-y: auto; box-shadow: 0 25px 60px rgba(0,0,0,0.3); }
.modal-header { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 25px 30px; border-radius: 20px 20px 0 0; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1; }
.modal-header h2 { font-size: 1.3rem; font-weight: 800; }
.modal-header p { font-size: 13px; opacity: 0.9; margin-top: 4px; }
.modal-close { background: rgba(255,255,255,0.2); border: none; color: white; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.modal-close:hover { background: rgba(255,255,255,0.4); transform: rotate(90deg); }
.modal-body { padding: 30px; }
.form-step { display: none; }
.form-step.active { display: block; }
.step-indicator { display: flex; gap: 5px; margin-bottom: 25px; }
.step-dot { flex: 1; height: 4px; background: var(--border); border-radius: 2px; transition: var(--transition); }
.step-dot.done { background: var(--primary); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 6px; }
.form-group label .req { color: var(--primary); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px; transition: var(--transition); background: white; color: var(--dark);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,92,0,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.otp-section { text-align: center; padding: 20px 0; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 20px 0; }
.otp-inputs input { width: 50px !important; height: 55px; text-align: center; font-size: 1.5rem; font-weight: 700; border-radius: 10px !important; padding: 0 !important; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(230,92,0,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ---- FOOTER ---- */
footer { background: var(--dark); color: #d1d5db; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 40px; }
.footer-col h4 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); }
.footer-logo .f-title { color: var(--primary); font-weight: 900; font-size: 17px; line-height: 1.2; }
.footer-col p { font-size: 14px; line-height: 1.8; color: #9ca3af; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #9ca3af; display: flex; align-items: center; justify-content: center; transition: var(--transition); text-decoration: none; }
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '▸'; color: var(--primary); font-size: 10px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-list { list-style: none; }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; color: #9ca3af; }
.footer-contact-list i { color: var(--primary); width: 20px; flex-shrink: 0; margin-top: 3px; }
.govt-logos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.govt-logo-item { background: rgba(255,255,255,0.05); border-radius: 8px; padding: 10px; text-align: center; transition: var(--transition); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.govt-logo-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.govt-logo-item img { height: 35px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; }
.govt-logo-item span { font-size: 10px; color: #9ca3af; }
.footer-visitor { display: inline-flex; align-items: center; gap: 8px; background: rgba(230,92,0,0.15); border: 1px solid var(--primary); border-radius: 25px; padding: 8px 18px; font-size: 13px; font-weight: 600; color: #d1d5db; margin-top: 15px; }
.footer-visitor i { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #6b7280; }
.footer-bottom a { color: #9ca3af; text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 4000;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; text-decoration: none;
    box-shadow: 0 5px 25px rgba(37,211,102,0.5);
    animation: pulse-wa 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 8px 35px rgba(37,211,102,0.7); }
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 5px 25px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 5px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ---- PAGE HERO BANNER ---- */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, #E65C00 100%); color: white; padding: 80px 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; margin-bottom: 15px; }
.page-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 15px; font-size: 13px; opacity: 0.8; }
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb i { font-size: 10px; }

/* ---- GALLERY ---- */
.gallery-section { background: var(--light-gray); }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 35px; }
.filter-btn { padding: 8px 20px; border-radius: 25px; border: 2px solid var(--border); background: white; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--dark); }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.gallery-grid { columns: 4; gap: 15px; }
.gallery-item { break-inside: avoid; margin-bottom: 15px; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(230,92,0,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2rem; }

/* ---- LIGHTBOX ---- */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lightbox.hidden { display: none; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: fixed; top: 20px; right: 25px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; z-index: 1; }

/* ---- EVENTS PAGE ---- */
.events-section { background: white; }
.event-card { display: flex; gap: 25px; background: white; border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); margin-bottom: 20px; border-left: 5px solid var(--primary); align-items: center; transition: var(--transition); }
.event-card:hover { transform: translateX(5px); box-shadow: var(--shadow-hover); }
.event-date-box { text-align: center; background: var(--primary); color: white; border-radius: 12px; padding: 15px 20px; flex-shrink: 0; min-width: 80px; }
.event-date-box .day { font-size: 2rem; font-weight: 900; line-height: 1; }
.event-date-box .month { font-size: 13px; font-weight: 600; opacity: 0.9; }
.event-info { flex: 1; }
.event-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.event-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--gray); font-size: 13px; margin-bottom: 10px; }
.event-meta i { color: var(--primary); }
.event-img { width: 120px; height: 90px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }

/* ---- POSTS PAGE ---- */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 25px; }
.post-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.post-card img { width: 100%; height: 200px; object-fit: cover; }
.post-body { padding: 20px; }
.post-type-tag { font-size: 11px; font-weight: 700; color: white; background: var(--primary); padding: 3px 10px; border-radius: 15px; text-transform: uppercase; display: inline-block; margin-bottom: 10px; }
.post-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.post-body p { font-size: 14px; color: var(--gray); margin-bottom: 15px; }

/* ---- CONTACT PAGE ---- */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 25px; }
.contact-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--primary-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--primary); font-size: 20px; }
.contact-label { font-weight: 700; font-size: 13px; color: var(--dark); margin-bottom: 4px; }
.contact-value { color: var(--gray); font-size: 14px; }
.contact-form-box { background: var(--light-gray); border-radius: var(--radius); padding: 35px; }
.contact-form-box h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 25px; color: var(--dark); }

/* ---- SUCCESS MESSAGE ---- */
.success-box { text-align: center; padding: 40px; }
.success-box .icon-check { width: 80px; height: 80px; border-radius: 50%; background: var(--primary); color: white; font-size: 2.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.success-box p { color: var(--gray); }

/* ---- ALERTS ---- */
.alert { padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 500; margin-bottom: 15px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .social-feed-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 3; }
    .pm-box { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: white; flex-direction: column; align-items: flex-start; padding: 80px 20px 30px; gap: 3px; box-shadow: -5px 0 30px rgba(0,0,0,0.15); transition: right 0.4s ease; z-index: 900; overflow-y: auto; }
    .nav-links.open { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links li > a, .nav-links li > button { padding: 12px 15px; border-radius: 8px; font-size: 15px; display: flex; align-items: center; }
    .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 899; }
    .nav-overlay.show { display: block; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; z-index: 1001; }
    .hero-slider { height: 420px; }
    .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .event-card { flex-wrap: wrap; }
    .event-img { width: 100%; height: 150px; }
    .footer-grid { grid-template-columns: 1fr; }
    .govt-logos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .hero-slider { height: 350px; }
    .slider-btn { width: 38px; height: 38px; font-size: 16px; }
    .top-bar .container { flex-direction: column; text-align: center; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-orange { color: var(--primary); }
.fw-bold { font-weight: 700; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.d-none { display: none; }
.loader { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: white; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
