/* assets/css/styles.css */
/* ===== DISCLAIMER MODAL (SUMMARY) ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 42, 68, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 32px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e6cba0;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 28px 32px 20px;
    border-bottom: 2px solid #f0f4f8;
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-header i {
    font-size: 2.5rem;
    color: #a37c4b;
    background: #fef0e6;
    padding: 16px;
    border-radius: 50%;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2a44;
    margin: 0;
    line-height: 1.2;
}

.modal-body {
    padding: 24px 32px;
}

.modal-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0a2a44;
    margin-bottom: 20px;
}

.modal-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.modal-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: #2c3e50;
}

.modal-bullets li i {
    color: #a37c4b;
    font-size: 1.1rem;
    margin-top: 2px;
}

.modal-readmore {
    text-align: center;
    margin: 20px 0 10px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px dashed #a37c4b;
}

.readmore-link {
    color: #0a2a44;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.readmore-link:hover {
    color: #a37c4b;
    text-decoration: underline;
}

.modal-footer {
    padding: 24px 32px 32px;
    border-top: 2px solid #f0f4f8;
    text-align: center;
}

.modal-accept-btn {
    background: #0a2a44;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(10,42,68,0.2);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.modal-accept-btn:hover {
    background: #143b5c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10,42,68,0.3);
}

.modal-accept-btn i {
    font-size: 1.2rem;
}

.modal-note {
    font-size: 0.8rem;
    color: #6b7a86;
    margin-top: 16px;
}

/* Scrollbar styling */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #a37c4b;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .modal-header h2 {
        font-size: 1.4rem;
    }
    .modal-body {
        padding: 20px;
    }
    .modal-bullets li {
        font-size: 0.9rem;
    }
    .modal-accept-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}
/* ===== DISCLAIMER MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 42, 68, 0.9); /* navy overlay */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 32px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e6cba0;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 28px 32px 20px;
    border-bottom: 2px solid #f0f4f8;
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-header i {
    font-size: 2.5rem;
    color: #a37c4b;
    background: #fef0e6;
    padding: 16px;
    border-radius: 50%;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2a44;
    margin: 0;
    line-height: 1.2;
}

.modal-body {
    padding: 24px 32px;
}

.disclaimer-section {
    margin-bottom: 24px;
}

.disclaimer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a2a44;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-section h3 i {
    color: #a37c4b;
    font-size: 1.1rem;
    width: 24px;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-left: 34px;
}

.modal-footer {
    padding: 24px 32px 32px;
    border-top: 2px solid #f0f4f8;
    text-align: center;
}

.modal-accept-btn {
    background: #0a2a44;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(10,42,68,0.2);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.modal-accept-btn:hover {
    background: #143b5c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10,42,68,0.3);
}

.modal-accept-btn i {
    font-size: 1.2rem;
}

.modal-note {
    font-size: 0.8rem;
    color: #6b7a86;
    margin-top: 16px;
}

/* Scrollbar styling */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f0f4f8;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #a37c4b;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .modal-header h2 {
        font-size: 1.4rem;
    }
    .modal-body {
        padding: 20px;
    }
    .disclaimer-section p {
        margin-left: 0;
    }
    .modal-accept-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* ----- GLOBAL RESET & FONTS ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fcfcfc;
    color: #1e2b3c;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ----- HEADER / NAVIGATION ----- */
header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #eef2f6;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
}

.logo h1 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0a2a44;
}

.logo span {
    color: #a37c4b;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* ===== LOGO SYSTEM ===== */

/* Header logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0a2a44;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: #a37c4b;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Logo only variant (no text) - optional */
.logo-icon-only .logo-text {
    display: none;
}

.logo-icon-only .logo-img {
    height: 50px;
}

/* Footer logo */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Makes logo white */
}

/* Dark background adjustment */
.footer-brand .footer-logo {
    filter: brightness(0) invert(1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo-link {
        gap: 10px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        height: 45px;
    }
}

/* Print styles */
@media print {
    .logo-img {
        display: none;
    }
    
    .logo-text h1 {
        color: black;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
    border-bottom-color: #a37c4b;
    color: #0a2a44;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: #0a2a44;
    cursor: pointer;
}

/* ----- HERO SECTION WITH VIDEO ----- */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,42,68,0.85) 0%, rgba(10,42,68,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-text {
    max-width: 600px;
    color: white;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.isizulu-tag {
    background: rgba(163, 124, 75, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ----- BUTTONS ----- */
.btn {
    background: #a37c4b;
    color: white;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.25s;
    letter-spacing: 0.3px;
}

.btn:hover {
    background: #7e5f3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #0a2a44;
    border-color: white;
}

/* ===== HOME INTRO SECTION – WHO WE ARE ===== */
.home-intro {
    padding: 60px 0 40px;
    background: white;
    position: relative;
}

.home-intro .container {
    position: relative;
    z-index: 2;
}

.intro-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 48px;
    box-shadow: 0 20px 40px -10px rgba(10,42,68,0.05);
    border: 1px solid #f0f4f8;
    position: relative;
    overflow: hidden;
}

/* subtle decorative element */
.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(163,124,75,0.02) 0%, rgba(163,124,75,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intro-badge {
    margin-bottom: 20px;
}

.pill {
    background: #f2efe9;
    color: #7e5f3b;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid #e6cba0;
}

.intro-card h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0a2a44;
    margin-bottom: 32px;
}

.intro-card h2 span {
    color: #a37c4b;
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 8px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: start;
}

.intro-text {
    color: #2c3e50;
}

.intro-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0a2a44;
    margin-bottom: 24px;
    line-height: 1.6;
    border-left: 4px solid #a37c4b;
    padding-left: 20px;
}

.intro-text p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: #3e5665;
}

.intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    background: #fafcfc;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
}

.intro-highlight i {
    color: #a37c4b;
    font-size: 1.2rem;
    margin-top: 2px;
}

.intro-highlight span {
    flex: 1;
    color: #2c3e50;
}

.intro-stats {
    background: linear-gradient(145deg, #f8fafc 0%, #f0f4fa 100%);
    border-radius: 28px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a2a44;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5f6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-label small {
    font-size: 0.75rem;
    text-transform: none;
    display: block;
    margin-top: 4px;
    color: #6b7a86;
    font-weight: 400;
}

.intro-cta {
    grid-column: span 2;
    margin-top: 16px;
    text-align: center;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid #0a2a44;
    color: #0a2a44;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.25s;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-dark:hover {
    background: #0a2a44;
    color: white;
}

/* responsive */
@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .intro-card h2 {
        font-size: 1.8rem;
    }
    
    .intro-card h2 span {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .intro-card {
        padding: 32px;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .intro-cta {
        grid-column: span 1;
    }
    
    .intro-card h2 {
        font-size: 1.6rem;
    }
}

/* ===== LOGO IMAGE ===== */
.intro-stats-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro-logo {
    margin-bottom: 20px;        /* space between logo and stats box */
    text-align: center;
}

.stats-logo-img {
    width: 175px;               /* adjust size as needed */
    height: 175px;
    object-fit: contain;
    border-radius: 50%;        /* makes it a circle */
    background: white;
    padding: 8px;
    border: 3px solid #a37c4b; /* brand gold border */
    box-shadow: 0 8px 20px rgba(163,124,75,0.15);
    transition: transform 0.25s ease;
}

.stats-logo-img:hover {
    transform: scale(1.05);    /* subtle hover effect */
}

/* Adjust stats box so it doesn't touch the logo */
.intro-stats {
    margin-top: 0;            /* reset, spacing handled by wrapper */
    width: 100%;             /* ensure it fills the column */
}

/* Responsive: smaller logo on mobile */
@media (max-width: 600px) {
    .stats-logo-img {
        width: 70px;
        height: 70px;
        padding: 6px;
    }
}
/* ----- FEATURED IMAGE GALLERY ----- */
.featured-gallery {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h3 {
    font-size: 2.2rem;
    color: #0a2a44;
    margin-bottom: 16px;
}

.section-title p {
    color: #5a6e7c;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: 0.3s;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- VALUES SECTION ----- */
.values-section {
    padding: 40px 0 20px;
}

.values-flex {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.values-flex span {
    background: white;
    padding: 16px 28px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eef2f6;
}

.values-flex i {
    color: #a37c4b;
}

/* ----- SERVICES SUMMARY (HOME) ----- */
.services-summary {
    margin: 60px 0;
}

.services-summary h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #0a2a44;
    margin-bottom: 40px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-item {
    background: white;
    padding: 28px;
    border-radius: 20px;
    border-left: 6px solid #a37c4b;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    transition: 0.25s;
}

.service-item:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.service-item i {
    color: #a37c4b;
    margin-right: 8px;
    font-size: 1.2rem;
}

.center {
    text-align: center;
}

/* ----- COMMUNITY BANNER (HOME) ----- */
.community-banner {
    background: linear-gradient(135deg, #f2efe9 0%, #eae5db 100%);
    padding: 48px;
    border-radius: 40px;
    margin: 40px 0;
}

.banner-content {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.banner-content i {
    font-size: 48px;
    color: #a37c4b;
}

.banner-content h3 {
    margin-bottom: 8px;
    color: #0a2a44;
}

/* ----- PAGE HEADER (inner pages) ----- */
.page-header {
    padding: 40px 0 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-radius: 0 0 40px 40px;
    margin-bottom: 20px;
}

.page-header h2 {
    font-size: 2.5rem;
    color: #0a2a44;
    margin-bottom: 8px;
}

/* ----- ABOUT PAGE - ENHANCED ----- */
.founder-section {
    margin: 40px 0;
}

.founder-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: white;
    padding: 48px;
    border-radius: 32px;
    gap: 48px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.03);
}

.founder-img {
    position: relative;
}

.founder-img img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    border: 4px solid white;
}

.founder-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #a37c4b;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 6px 16px rgba(163,124,75,0.3);
}

.founder-details h3 {
    font-size: 2.2rem;
    color: #0a2a44;
    margin-bottom: 16px;
}

.quote {
    font-style: italic;
    color: #3a5a6a;
    font-size: 1.25rem;
    margin-bottom: 24px;
    border-left: 4px solid #a37c4b;
    padding-left: 20px;
}

.founder-details i {
    color: #a37c4b;
    margin-right: 10px;
}

/* ----- FOUNDER GALLERY (ABOUT PAGE) ----- */
.founder-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.founder-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}

.founder-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.structure-section {
    background: white;
    border-radius: 32px;
    padding: 48px;
    margin: 40px 0;
    border: 1px solid #edf2f7;
}

.value-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.value-items div {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-items i {
    color: #a37c4b;
    font-size: 1.4rem;
    margin-top: 4px;
}

.community-dark {
    background: #0a2a44;
    color: white;
    padding: 60px;
    border-radius: 32px;
    margin: 48px 0;
}

.community-dark h3 {
    color: #e6cba0;
    font-size: 2rem;
    margin-bottom: 16px;
}

/* ----- INQUIRY FORM ----- */
.inquiry-form-container {
    background: white;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.inquiry-form-container h3 {
    font-size: 1.8rem;
    color: #0a2a44;
    margin-bottom: 8px;
}

.form-subhead {
    color: #5a6e7c;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.2s;
    background: #fafcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a37c4b;
    box-shadow: 0 0 0 4px rgba(163,124,75,0.1);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    background: #0a2a44;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 16px;
}

.submit-btn:hover {
    background: #143b5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10,42,68,0.2);
}

.contact-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
}

.whatsapp-btn,
.email-btn {
    flex: 1;
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.25s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.email-btn {
    background: #eef2f6;
    color: #0a2a44;
    border: 1px solid #d0dbe3;
}

.whatsapp-btn:hover,
.email-btn:hover {
    transform: translateY(-2px);
}

.extra-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.info-box {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

.info-box h4 {
    margin-bottom: 16px;
    color: #0a2a44;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----- SERVICES PAGE (detailed) ----- */
.services-detailed {
    margin: 40px 0;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-block {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
    transition: 0.25s;
}

.service-block:hover {
    box-shadow: 0 16px 32px rgba(0,0,0,0.04);
}

.service-block h4 {
    font-size: 1.4rem;
    border-bottom: 3px solid #a37c4b;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 24px;
    color: #0a2a44;
}

.service-block ul {
    list-style: none;
}

.service-block li {
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
}

.service-block li i {
    color: #a37c4b;
    margin-top: 4px;
}

.zulu-badge {
    background: #fef0e6;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
}

.fee-section {
    margin: 40px 0;
}

.fee-card {
    background: linear-gradient(135deg, #f3f7fa 0%, #eef2f6 100%);
    padding: 48px;
    border-radius: 28px;
}

/* ----- FOOTER ----- */
footer {
    background: #0a2a44;
    color: #dad7cc;
    padding: 60px 0 32px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.attorneys-tag {
    color: #e6cba0;
    font-weight: 600;
}

.ubuntu-quote {
    margin-top: 20px;
    font-style: italic;
    font-size: 1.05rem;
}

.social {
    margin-top: 30px;
}

.social a {
    color: #e6cba0;
    font-size: 1.4rem;
    margin-right: 18px;
    text-decoration: none;
    transition: 0.2s;
}

.social a:hover {
    color: white;
    transform: translateY(-3px);
    display: inline-block;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 1.15rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #e6cba0;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #1f4a5c;
    margin-top: 48px;
    padding-top: 28px;
    text-align: center;
    color: #a0b8c2;
}

/* ----- WHATSAPP FLOAT ----- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 24px rgba(37,211,102,0.3);
    z-index: 200;
    text-decoration: none;
    transition: 0.25s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 32px rgba(37,211,102,0.4);
}

/* ----- MOBILE RESPONSIVE ----- */
@media (max-width: 1000px) {
    .contact-grid,
    .services-detailed-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        grid-template-columns: 1fr;
    }
    
    .founder-img {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .extra-flex,
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.05);
        z-index: 99;
    }

    .nav-links.mobile-nav-active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .founder-card,
    .contact-card,
    .inquiry-form-container {
        padding: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
}

/* ----- helper to show mobile nav when toggled ----- */
.mobile-nav-active {
    display: flex !important;
}
.areas-served {
    padding: 60px 0;
    background: #f8fafc;
}

.areas-served h2 {
    font-size: 2rem;
    color: #0a2a44;
    text-align: center;
    margin-bottom: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.area-item {
    background: white;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #edf2f7;
}

.area-item i {
    font-size: 2rem;
    color: #a37c4b;
    margin-bottom: 12px;
}

.area-item h3 {
    font-size: 1.2rem;
    color: #0a2a44;
    margin-bottom: 8px;
}

.area-item p {
    color: #5a6e7c;
    font-size: 0.9rem;
}