/* CRITICAL FIXES FOR ALL ISSUES - WORDPRESS THEME */

/* =========================================
   GLOBAL FONT CONSISTENCY - Match React (UNIFORM BODY FONT)
   ========================================= */
body,
p, span, a, li, label, input, textarea, button, select, div {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif !important;
}

/* Base body font for all sections */
.section-description,
.founder-bio-text p,
.value-description,
.timeline-description,
.why-matters-desc,
.service-description,
.speaking-topic-desc,
.speaking-intro,
.benefit-text,
.achievement-text,
.process-desc,
.impact-desc,
.story-quote,
.blog-featured-excerpt,
.blog-card-excerpt,
.hero-description,
.page-hero-desc,
.mission-text,
.founder-quote p,
.contact-form-subtitle,
.booking-desc,
.response-time-card p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    font-family: 'Open Sans', sans-serif !important;
}

/* =========================================
   IMAGE OPTIMIZATION & CACHING
   ========================================= */
img {
    loading: lazy;
}

/* =========================================
   1. LOGO - NAVBAR & FOOTER (LARGER, READABLE, iOS COMPATIBLE)
   ========================================= */

/* HEADER LOGO - LARGER AND MORE VISIBLE */
.logo-zoom-container {
    height: 110px;
    width: auto;
    overflow: visible;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {
    .logo-zoom-container {
        height: 120px;
    }
}

@media (min-width: 768px) {
    .logo-zoom-container {
        height: 140px;
    }
}

@media (min-width: 1024px) {
    .logo-zoom-container {
        height: 160px;
    }
}

.logo-zoom-container .header-logo-img {
    height: 110px !important;
    width: auto !important;
    max-width: 450px;
    object-fit: contain;
    display: block;
}

@media (min-width: 640px) {
    .logo-zoom-container .header-logo-img {
        height: 120px !important;
        max-width: 500px;
    }
}

@media (min-width: 768px) {
    .logo-zoom-container .header-logo-img {
        height: 140px !important;
        max-width: 580px;
    }
}

@media (min-width: 1024px) {
    .logo-zoom-container .header-logo-img {
        height: 160px !important;
        max-width: 650px;
    }
}

/* FOOTER LOGO - DIRECT IMAGE STYLING */
.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 350px;
    display: block;
    object-fit: contain;
    background-color: #F5F9FB;
    border-radius: 10px;
    padding: 14px 22px;
    margin-bottom: 1rem;
}

/* Desktop Footer Logo */
@media (min-width: 768px) {
    .footer-logo-img {
        height: 110px;
        max-width: 420px;
        padding: 18px 30px;
    }
}

/* Large Desktop Footer Logo */
@media (min-width: 1024px) {
    .footer-logo-img {
        height: 120px;
        max-width: 480px;
        padding: 20px 35px;
    }
}

/* Mobile Footer Logo */
@media (max-width: 767px) {
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo-img {
        height: 80px;
        max-width: 300px;
        padding: 12px 18px;
        margin: 0 auto 1rem auto;
    }
}

/* Footer Social Icons - Gold Color, NO YELLOW HOVER */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: #CFA654 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(207, 166, 84, 0.1);
    transition: all 0.2s ease;
}

.social-links a svg {
    stroke: #CFA654 !important;
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    color: #FFFFFF !important;
    background: #075F73 !important;
}

.social-links a:hover svg {
    stroke: #FFFFFF !important;
}

/* =========================================
   2. NAVBAR - SOLID WHITE BACKGROUND
   ========================================= */
.site-header {
    background-color: #FFFFFF !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.site-header.scrolled {
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* =========================================
   2b. MOBILE NAVBAR - PROFESSIONAL REDESIGN
   ========================================= */
.mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--foreground) !important;
    background: transparent !important;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: var(--muted) !important;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle svg {
    stroke: var(--foreground) !important;
    width: 24px;
    height: 24px;
}

/* Mobile Menu - Professional Redesign */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 320px;
    background: #FFFFFF;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active .mobile-menu-inner {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    margin: 3rem 0 0 0;
    padding: 0;
}

.mobile-nav-list li {
    margin: 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 0.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 500;
    color: var(--foreground) !important;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.current {
    color: var(--primary) !important;
    background: transparent !important;
}

.mobile-menu-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: none;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile Close Button */
.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border-radius: 50%;
    color: var(--foreground);
    cursor: pointer;
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* =========================================
   3. HERO SECTION - DESKTOP & MOBILE
   FIX: "Transforming futures." is BLUE #075F73
   ========================================= */
.hero-section {
    padding-top: 100px !important;
    min-height: 90vh;
}

.hero-content {
    padding-top: 2rem !important;
}

.hero-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--foreground) !important;
    line-height: 1.15 !important;
}

/* Transforming futures. should be TEAL/BLUE */
.hero-title-accent {
    font-size: inherit !important;
    font-weight: inherit !important;
    color: #075F73 !important;
    display: block;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem !important;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem !important;
    }
}

/* Mobile Hero - BALANCED SPACING */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 40px !important;
        padding-bottom: 25px !important;
        min-height: auto !important;
        position: relative;
        overflow: hidden;
    }
    
    .hero-image-container {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.35;
    }
    
    .hero-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.95) 100%);
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
        padding: 1rem 0 1rem !important;
        margin-top: 0 !important;
        text-align: center;
    }
    
    .hero-accent-line {
        justify-content: center;
        margin-bottom: 0.5rem;
        margin-top: 0 !important;
        padding: 0 0.5rem;
    }
    
    .hero-accent-text {
        font-size: 0.875rem !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.75rem !important;
        margin-top: 0 !important;
    }
    
    .hero-title-accent {
        display: block;
        font-size: inherit !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.6;
        max-width: 100%;
        color: #444444;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-decorative {
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Hide decorative elements on mobile to reduce spacing */
    .hero-tilted-squares {
        display: none !important;
    }
    
    .adinkra-top-right {
        display: none !important;
    }
}

/* =========================================
   4. HOMEPAGE STATS SECTION - #F2EADF BG + ADINKRA
   ========================================= */
.impact-stats {
    background: #F2EADF !important;
    position: relative;
    padding: 4rem 0 !important;
    overflow: hidden;
}

.impact-stats::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23C79738' stroke-width='2' opacity='0.15'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='%23C79738' stroke-width='1.5' opacity='0.12'/%3E%3Ccircle cx='50' cy='50' r='10' fill='none' stroke='%23C79738' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.impact-stats::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 3%;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='20' y='20' width='60' height='60' fill='none' stroke='%23C79738' stroke-width='2' opacity='0.12' transform='rotate(15 50 50)'/%3E%3Crect x='30' y='30' width='40' height='40' fill='none' stroke='%23C79738' stroke-width='1.5' opacity='0.1' transform='rotate(30 50 50)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #075F73;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A1A1A;
}

/* =========================================
   5. SPEAKING ENGAGEMENTS SECTION - LEFT ALIGNED, LARGER FONT
   ========================================= */
.speaking-section {
    padding: 4rem 0 !important;
    background-color: #333333 !important;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .speaking-section {
        padding: 5rem 0 !important;
    }
}

.speaking-section .speaking-content {
    text-align: left !important;
    max-width: 700px;
    position: relative;
    z-index: 10;
}

.speaking-section .speaking-header {
    justify-content: flex-start !important;
    color: #CFA654;
}

.speaking-section .speaking-header svg {
    stroke: #CFA654;
}

.speaking-section .speaking-header-text {
    color: #CFA654;
    font-size: 1rem !important;
}

.speaking-section .speaking-title {
    color: #FFFFFF;
    font-size: 2rem !important;
    text-align: left !important;
}

@media (min-width: 768px) {
    .speaking-section .speaking-title {
        font-size: 2.5rem !important;
    }
}

.speaking-section .speaking-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0625rem !important;
    text-align: left !important;
    line-height: 1.7;
}

.speaking-section .keynotes-list {
    text-align: left;
    max-width: 100%;
    margin: 1.5rem 0 2rem 0 !important;
    padding: 0;
    padding-left: 0.5rem;
}

.speaking-section .keynote-item {
    padding: 0.625rem 0;
    margin-bottom: 0.5rem;
}

.speaking-section .keynote-bullet {
    background-color: #CFA654 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.75rem;
}

.speaking-section .keynote-text {
    color: #FFFFFF;
    font-size: 1rem !important;
}

/* Speaking Section Geometry/Adinkra on Dark Background */
.speaking-section .speaking-adinkra {
    position: absolute;
    opacity: 0.15;
}

.speaking-section .speaking-adinkra svg circle,
.speaking-section .speaking-adinkra svg path {
    stroke: #CFA654 !important;
}

.speaking-adinkra-1 {
    top: 1rem;
    right: 1rem;
}

.speaking-adinkra-2 {
    bottom: 1rem;
    left: 1rem;
}

/* Geometric shapes for speaking section */
.speaking-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 5%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(207, 166, 84, 0.2);
    border-radius: 50%;
}

.speaking-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(207, 166, 84, 0.15);
    transform: rotate(45deg);
}

/* =========================================
   6. PARTNERS - CIRCULAR ORBIT DESIGN
   ========================================= */
.partners-orbit {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .partners-orbit {
        width: 360px;
        height: 360px;
    }
}

@media (min-width: 768px) {
    .partners-orbit {
        width: 420px;
        height: 420px;
    }
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.orbit-center-text {
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px dashed var(--border);
    border-radius: 50%;
}

.orbit-ring-1 {
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
}

.orbit-ring-2 {
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border-color: rgba(206, 163, 83, 0.3);
}

@media (min-width: 640px) {
    .orbit-ring-1 { width: 220px; height: 220px; }
    .orbit-ring-2 { width: 360px; height: 360px; }
}

@media (min-width: 768px) {
    .orbit-ring-1 { width: 260px; height: 260px; }
    .orbit-ring-2 { width: 420px; height: 420px; }
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 5;
}

@media (min-width: 640px) {
    .orbit-item { width: 70px; height: 70px; }
}

@media (min-width: 768px) {
    .orbit-item { width: 80px; height: 80px; }
}

.orbit-item-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.orbit-item-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.orbit-item-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-item-2 { top: 50%; right: 0; transform: translateY(-50%); }
.orbit-item-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-item-4 { top: 50%; left: 0; transform: translateY(-50%); }

/* =========================================
   7. ABOUT PAGE - WHAT DRIVES US, OUR GROWTH, IMPACT (LARGER FONTS + GEOMETRY)
   ========================================= */

/* Why This Matters - Professional (No Gradient) */
.why-matters-section {
    background: #FFFFFF !important;
    position: relative;
    overflow: hidden;
}

/* Geometry for why matters section */
.why-matters-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: 3%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(7, 95, 115, 0.08);
    border-radius: 50%;
}

.why-matters-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(199, 151, 56, 0.1);
    transform: rotate(45deg);
}

.why-matters-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .why-matters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.why-matters-card {
    position: relative;
    padding: 2rem;
    border-radius: 0.75rem;
    background: #FAFAFA;
    border: 1px solid #E8E8E8;
    overflow: hidden;
}

.why-matters-number {
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.06;
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    line-height: 1;
    color: #1A1A1A;
}

.why-matters-title {
    font-size: 1.25rem !important;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1A1A1A;
}

.why-matters-desc {
    color: #555555;
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

.why-matters-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.why-matters-teal .why-matters-accent { background: #005B7F; }
.why-matters-gold .why-matters-accent { background: #CFA654; }
.why-matters-charcoal .why-matters-accent { background: #1A1A1A; }

/* Quote - NO BORDER-LEFT or edge color */
.why-matters-quote {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: transparent;
    border-radius: 0;
    border: none !important;
    border-left: none !important;
    font-size: 1.125rem !important;
    font-style: italic;
    color: #444444;
}

.why-matters-quote p {
    margin: 0;
    font-size: 1.125rem !important;
    font-style: italic;
    color: #444444;
    line-height: 1.7;
}

/* Core Values - What Drives Us */
.values-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
    padding: 1.75rem;
    background: var(--muted);
    border-radius: 1rem;
    position: relative;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 0.75rem;
}

.value-title {
    font-size: 1.25rem !important;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.value-description {
    font-size: 1rem !important;
    color: var(--muted-foreground);
    line-height: 1.7 !important;
}

/* Timeline / Journey Section - Professional Grid with Geometry and WIDER YEAR */
.timeline-section {
    background: #FAFAFA !important;
    padding: 4rem 0 !important;
    position: relative;
    overflow: hidden;
}

/* Professional geometry for timeline section */
.timeline-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(7, 95, 115, 0.06);
    border-radius: 50%;
}

.timeline-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(199, 151, 56, 0.08);
}

/* Additional geometry circles */
.timeline-section .section-header::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 10%;
    width: 60px;
    height: 60px;
    border: 1.5px solid rgba(7, 95, 115, 0.05);
    border-radius: 50%;
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
    z-index: 10;
}

@media (min-width: 640px) {
    .timeline-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .timeline-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.timeline-line {
    display: none !important;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0.75rem;
    border: 1px solid #E8E8E8;
    transition: box-shadow 0.2s ease;
}

.timeline-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* WIDER year marker */
.timeline-marker {
    flex-shrink: 0;
    width: fit-content;
    min-width: 80px;
    height: auto;
    background: #075F73;
    border: none;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1rem;
}

.timeline-year {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.timeline-content {
    flex: 1;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.timeline-event {
    font-size: 1.0625rem !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
    line-height: 1.35;
}

.timeline-description {
    font-size: 0.9375rem !important;
    color: #666666;
    line-height: 1.6 !important;
}

/* =========================================
   8. SERVICES PAGE - CLEAN PROFESSIONAL CARDS
   ========================================= */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Clean professional service cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: rgba(7, 95, 115, 0.2);
}

.service-title {
    font-size: 1.125rem !important;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--foreground);
    line-height: 1.35;
}

.service-description {
    font-size: 0.9375rem !important;
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.65 !important;
    flex: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.service-feature {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: rgba(7, 95, 115, 0.06);
    border-radius: 9999px;
    color: #075F73;
    font-weight: 500;
}

/* What to Expect / Benefits */
.benefits-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem;
    background: var(--muted);
    border-radius: 0.75rem;
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.benefit-text {
    font-size: 0.9375rem !important;
    color: var(--foreground);
    line-height: 1.6 !important;
}

.benefits-section-title {
    font-size: 1.5rem !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

/* Speaking Topics on Services Page - FIX "Ideal For" clarity */
.speaking-topics-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .speaking-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .speaking-topics-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.speaking-topic-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.speaking-topic-number {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.25;
    margin-bottom: 0.875rem;
    color: #FFFFFF;
}

.speaking-topic-title {
    font-size: 1.0625rem !important;
    font-weight: 600;
    margin-bottom: 0.875rem;
    line-height: 1.4;
    color: #FFFFFF;
}

.speaking-topic-desc {
    font-size: 0.9375rem !important;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    line-height: 1.65 !important;
}

.speaking-topic-audiences {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* FIXED: Clearer "Ideal for" label */
.audiences-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

/* FIXED: Better contrast for audience tags - white bg instead of gold on blue */
.audience-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.audience-tag-item {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #075F73 !important;
    border-radius: 9999px;
    font-weight: 500;
}

.speaking-label {
    color: var(--secondary) !important;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem !important;
}

.speaking-section-title {
    font-size: 2rem !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .speaking-section-title {
        font-size: 2.5rem !important;
    }
}

.speaking-intro {
    opacity: 0.9;
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

.speaking-header-icon {
    margin-bottom: 1rem;
}

.speaking-header-icon svg {
    stroke: var(--secondary);
}

/* =========================================
   9. IMPACT PAGE - STATS REDESIGN (GOLD NUMBERS, 2 ROWS, 3 PER ROW, #FAF6ED BG)
   ========================================= */
.impact-stats-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .impact-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Stats card background #FAF6ED */
.impact-stat-card {
    background: #FAF6ED !important;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(199, 151, 56, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(199, 151, 56, 0.15);
}

.impact-number {
    font-size: 2.5rem !important;
    font-weight: 800;
    color: #C79738 !important;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .impact-number {
        font-size: 3rem !important;
    }
}

.impact-label {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.impact-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* =========================================
   10. IMPACT IN ACTION - CREATIVE STYLISH MASONRY GALLERY
   ========================================= */
.impact-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .impact-gallery-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(3, 180px);
        gap: 1rem;
    }
    
    /* Creative masonry layout - 6 images */
    .impact-gallery-item:nth-child(1) {
        grid-column: 1 / 6;
        grid-row: 1 / 3;
    }
    
    .impact-gallery-item:nth-child(2) {
        grid-column: 6 / 9;
        grid-row: 1 / 2;
    }
    
    .impact-gallery-item:nth-child(3) {
        grid-column: 9 / 13;
        grid-row: 1 / 2;
    }
    
    .impact-gallery-item:nth-child(4) {
        grid-column: 6 / 10;
        grid-row: 2 / 3;
    }
    
    .impact-gallery-item:nth-child(5) {
        grid-column: 10 / 13;
        grid-row: 2 / 3;
    }
    
    .impact-gallery-item:nth-child(6) {
        grid-column: 1 / 7;
        grid-row: 3 / 4;
    }
    
    .impact-gallery-item:nth-child(7) {
        grid-column: 7 / 13;
        grid-row: 3 / 4;
    }
}

@media (min-width: 1024px) {
    .impact-gallery-grid {
        gap: 1.25rem;
        grid-template-rows: repeat(3, 200px);
    }
}

.impact-gallery-item {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.impact-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 95, 115, 0.15) 0%, rgba(199, 151, 56, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.impact-gallery-item:hover::before {
    opacity: 1;
}

.impact-gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

@media (max-width: 639px) {
    .impact-gallery-item {
        aspect-ratio: 16/10;
        border-radius: 1rem;
    }
}

.impact-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.impact-gallery-item:hover img {
    transform: scale(1.15);
}

.impact-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.impact-gallery-item:hover .impact-gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.impact-gallery-overlay p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Gold accent corner for stylish effect */
.impact-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent rgba(199, 151, 56, 0.9) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.impact-gallery-item:hover::after {
    opacity: 1;
}

/* =========================================
   11. KEY ACHIEVEMENTS - GOLD CIRCLES, SCROLLING EFFECTS
   ========================================= */
.achievements-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 0.875rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.achievement-number-badge {
    width: 44px;
    height: 44px;
    background: #C79738 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(199, 151, 56, 0.35);
}

.achievement-number-badge span {
    color: white;
    font-size: 1.0625rem;
    font-weight: 700;
}

.achievement-text {
    font-size: 0.9375rem !important;
    color: var(--foreground);
    line-height: 1.65 !important;
}

/* =========================================
   12. BLOG PAGE - MATCHING REACT DESIGN EXACTLY
   ========================================= */

/* Blog Hero */
.blog-hero {
    background: var(--muted) !important;
    padding: 7rem 0 4rem !important;
}

.blog-hero .page-hero-content {
    text-align: left;
    max-width: 768px;
}

.blog-hero .page-hero-label {
    color: var(--secondary) !important;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9375rem !important;
    margin-bottom: 1rem;
}

.blog-hero .page-hero-title {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: var(--foreground) !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .blog-hero .page-hero-title {
        font-size: 3rem !important;
    }
}

@media (min-width: 1024px) {
    .blog-hero .page-hero-title {
        font-size: 3.5rem !important;
    }
}

.blog-hero .page-hero-desc {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 1.125rem !important;
    color: var(--muted-foreground) !important;
    line-height: 1.7;
}

/* Category Filter Bar - Sticky like React */
.blog-filter-bar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    background: white;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.blog-category-scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.blog-category-scroll::-webkit-scrollbar {
    display: none;
}

.blog-filter-btn {
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    background: var(--muted);
    color: var(--muted-foreground);
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--primary);
    color: white;
}

/* Blog Section Label */
.blog-section-label {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-family: 'Open Sans', sans-serif;
}

/* Featured Article Section - Matching React exactly */
.blog-featured-section {
    background: white;
    padding: 4rem 0;
}

.blog-featured-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .blog-featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(206, 163, 83, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.05);
}

.blog-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(206, 163, 83, 0.1);
    color: var(--secondary);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1.25rem;
}

.blog-featured-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif !important;
    margin-bottom: 1rem;
    color: var(--foreground);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .blog-featured-title {
        font-size: 1.75rem !important;
    }
}

@media (min-width: 1024px) {
    .blog-featured-title {
        font-size: 2rem !important;
    }
}

.blog-featured-excerpt {
    font-family: 'Open Sans', sans-serif;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 1rem !important;
}

.blog-featured-meta {
    display: flex;
    gap: 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
}

.meta-dot { opacity: 0.5; }

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.blog-read-link:hover { gap: 0.875rem; }

/* Latest Articles Grid - 4 columns on xl like React */
.blog-grid-section {
    padding: 4rem 0;
}

.blog-grid-heading {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-bottom: 2rem;
}

.blog-posts-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .blog-posts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Blog Card - matching React exactly */
.blog-card {
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(206, 163, 83, 0.1);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-category {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(206, 163, 83, 0.1);
    color: var(--secondary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.875rem;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1rem !important;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0.625rem;
    color: var(--foreground);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.875rem !important;
    font-family: 'Open Sans', sans-serif;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    color: var(--muted-foreground);
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
}

/* Blog placeholder for cards without images */
.blog-card-placeholder,
.blog-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(206, 163, 83, 0.15), rgba(7, 95, 115, 0.1));
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Newsletter Section */
.blog-newsletter-section {
    padding: 5rem 0;
    background: white;
}

.blog-newsletter-content {
    text-align: center;
}

.blog-newsletter-title {
    font-size: 1.75rem !important;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .blog-newsletter-title {
        font-size: 2rem !important;
    }
}

.blog-newsletter-desc {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.blog-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .blog-newsletter-form {
        flex-direction: row;
    }
}

.blog-newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
}

/* =========================================
   13. CONTACT PAGE - EXACT REACT DESIGN
   ========================================= */
.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
        gap: 4rem;
    }
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Contact Form Card - #F4EEE4 Background */
.contact-form-card {
    padding: 2rem 2.5rem;
    background: #F4EEE4 !important;
    border-radius: 1rem;
    border: none;
}

.contact-form-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .contact-form-title {
        font-size: 1.75rem !important;
    }
}

.contact-form-subtitle {
    font-size: 1rem !important;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

/* Contact Info Card - #F4EEE4 Background */
.contact-info-card {
    padding: 1.75rem;
    background: #F4EEE4 !important;
    border-radius: 1rem;
    border: none;
}

.contact-info-card h2 {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(199, 151, 56, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.contact-details p {
    margin: 0;
}

.contact-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem !important;
}

.contact-details a {
    color: var(--foreground);
    font-weight: 500;
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--primary);
}

/* Booking CTA Card - #075F73 Background */
.booking-cta-card {
    padding: 2rem;
    background: #075F73 !important;
    border-radius: 1rem;
    border: none;
    color: white;
}

.booking-cta-card h3 {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white !important;
}

.booking-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.booking-desc {
    font-size: 0.9375rem !important;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65 !important;
    margin-bottom: 1.5rem !important;
}

.booking-cta-card .btn {
    background: #CFA654 !important;
    color: #1A1A1A !important;
    border: none;
}

.booking-cta-card .btn:hover {
    background: #b8913d !important;
}

/* Booking Calendar Arrows Fix - Better placement */
.booking-calendar {
    position: relative;
}

.booking-calendar .calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0;
}

.booking-calendar .calendar-nav button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0.875rem;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-calendar .calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.35);
}

.booking-calendar .calendar-title {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

/* Response Time Card - NO border-left/tip color */
.response-time-card {
    padding: 1.25rem 1.5rem;
    background: rgba(7, 95, 115, 0.08);
    border-radius: 0.75rem;
    border: none !important;
    border-left: none !important;
}

.response-time-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--primary);
}

.response-time-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

/* Form Styling */
.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.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(7, 95, 115, 0.12);
}

/* =========================================
   PAGE HERO & SECTION COMMON STYLES
   ========================================= */
.page-hero {
    padding: 6rem 0 4rem;
    margin-top: 60px;
    background: var(--muted);
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 5rem 0 3rem;
    }
}

.page-hero-content {
    max-width: 768px;
}

.page-hero-label {
    color: var(--secondary) !important;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.page-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    color: var(--foreground) !important;
}

.page-hero .page-hero-title,
.page-hero h1 {
    color: var(--foreground) !important;
}

.hero-title {
    color: var(--foreground) !important;
}

.section-title-light {
    color: #FFFFFF !important;
}

@media (min-width: 640px) {
    .page-hero-title { font-size: 2.5rem; }
}

@media (min-width: 768px) {
    .page-hero-title { font-size: 3rem; }
}

.page-hero-desc {
    font-size: 1.125rem !important;
    color: var(--muted-foreground) !important;
    line-height: 1.7;
}

.hero-description {
    color: var(--muted-foreground) !important;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-label {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}

.section-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 1rem !important;
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

/* =========================================
   BACKGROUND WISPS/SILHOUETTES
   ========================================= */
.page-wisps {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.wisp {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.wisp-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary);
    top: -200px;
    right: -200px;
}

.wisp-2 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    bottom: 20%;
    left: -150px;
}

.wisp-3 {
    width: 400px;
    height: 400px;
    background: var(--gold-warm);
    bottom: -100px;
    right: 20%;
}

/* =========================================
   MOBILE PADDING FIX - ALL PAGES
   ========================================= */
@media (max-width: 767px) {
    .container-wide,
    .container-narrow {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .footer-content {
        padding: 2rem 0 3rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-bottom-inner {
        padding: 1rem 0;
    }
}

/* =========================================
   MISSION VISION SECTION
   ========================================= */
.mission-vision-section {
    padding: 4rem 0;
    background: var(--primary);
    color: white;
}

.mission-vision-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.mission-text {
    font-size: 1.0625rem !important;
    line-height: 1.8 !important;
    opacity: 0.95;
}

/* About Founder Grid */
.about-founder-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-founder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.founder-about-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.founder-bio-text p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7 !important;
    font-size: 1rem !important;
}

.founder-quote {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--muted);
    border-left: 4px solid var(--secondary);
    border-radius: 0 0.5rem 0.5rem 0;
}

.founder-quote p {
    font-style: italic;
    font-size: 1rem !important;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.founder-quote cite {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
}

/* About CTA */
.about-cta-content {
    text-align: center;
}

/* =========================================
   STORIES SECTION
   ========================================= */
.stories-intro {
    opacity: 0.9;
    font-size: 1rem !important;
}

.stories-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.75rem;
    backdrop-filter: blur(10px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.story-avatar-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.story-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-meta h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.story-meta p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.story-quote {
    font-style: italic;
    line-height: 1.75 !important;
    opacity: 0.95;
    font-size: 0.9375rem !important;
}

/* =========================================
   PROCESS GRID (Services Page)
   ========================================= */
.process-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.process-step {
    text-align: center;
    padding: 1.75rem;
    background: var(--muted);
    border-radius: 1rem;
}

.process-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.process-title {
    font-size: 1.0625rem !important;
    font-weight: 600;
    margin-bottom: 0.625rem;
    color: var(--foreground);
}

.process-desc {
    font-size: 0.9375rem !important;
    color: var(--muted-foreground);
    line-height: 1.55;
}

/* =========================================
   CTA BUTTONS
   ========================================= */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 639px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   MOBILE FOOTER - ENHANCED CLEAN DESIGN
   ========================================= */
@media (max-width: 767px) {
    .site-footer {
        padding-top: 0;
    }
    
    .footer-content {
        padding: 2.5rem 1rem 2rem;
    }
    
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        order: 1;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    /* Mobile Footer Logo - Clean, no weird transforms */
    .footer-logo-zoom {
        height: 55px !important;
        width: auto !important;
        max-width: 200px !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
    
    .footer-logo-zoom img {
        height: 55px !important;
        width: auto !important;
        max-width: 200px !important;
        transform: none !important;
        object-fit: contain !important;
    }
    
    .footer-description {
        font-size: 0.9375rem !important;
        line-height: 1.65;
        max-width: 300px;
        margin: 0 auto 1.25rem;
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .footer-nav,
    .footer-services {
        order: 2;
    }
    
    /* Mobile Footer - WHITE text for Navigation and Services headings */
    .footer-nav h4,
    .footer-services h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: #FFFFFF !important;
    }
    
    .footer-nav ul,
    .footer-services ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.625rem 1.25rem;
    }
    
    .footer-nav li,
    .footer-services li {
        margin: 0;
    }
    
    /* Mobile Footer - WHITE text for all nav and services links */
    .footer-nav a,
    .footer-services a {
        font-size: 0.9375rem;
        padding: 0.25rem 0;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    
    .footer-nav a:hover,
    .footer-services a:hover {
        color: #CFA654 !important;
    }
    
    .footer-email {
        justify-content: center;
        margin-top: 1rem;
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    
    .footer-email svg {
        stroke: rgba(255, 255, 255, 0.85) !important;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.625rem;
        text-align: center;
    }
    
    .footer-copyright,
    .footer-proverb {
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.7) !important;
    }
    
    .footer-proverb {
        opacity: 0.8;
        font-style: italic;
    }
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

.bg-background {
    background-color: var(--background);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-primary {
    background-color: var(--primary);
}

.text-white {
    color: #FFFFFF;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.text-secondary {
    color: var(--secondary);
}

.font-semibold {
    font-weight: 600;
}

.z-10 {
    z-index: 10;
}

/* =========================================
   ABOUT PAGE - Story Text Styling with Adinkra Highlight
   ========================================= */
.about-story-text {
    max-width: 800px;
    position: relative;
}

.about-story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 1rem;
}

.about-story-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .about-story-text p {
        font-size: 1.0625rem;
    }
}

/* Adinkra Quote Highlight Box */
.adinkra-highlight {
    display: inline;
    background: linear-gradient(135deg, rgba(7, 95, 115, 0.08) 0%, rgba(199, 151, 56, 0.08) 100%);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    color: #075F73;
    border-bottom: 2px solid #CFA654;
}

.adinkra-meaning {
    display: inline;
    font-style: italic;
    color: #075F73;
    font-weight: 500;
}

/* About Hero with Geometric Background */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23075F73' stroke-width='1' opacity='0.06'/%3E%3Ccircle cx='50' cy='50' r='35' fill='none' stroke='%23CFA654' stroke-width='1' opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='%23075F73' stroke-width='1' opacity='0.05'/%3E%3Ccircle cx='50' cy='50' r='15' fill='none' stroke='%23CFA654' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 3%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='10' width='80' height='80' fill='none' stroke='%23CFA654' stroke-width='1' opacity='0.07' transform='rotate(15 50 50)'/%3E%3Crect x='20' y='20' width='60' height='60' fill='none' stroke='%23075F73' stroke-width='1' opacity='0.05' transform='rotate(30 50 50)'/%3E%3Crect x='30' y='30' width='40' height='40' fill='none' stroke='%23CFA654' stroke-width='0.5' opacity='0.06' transform='rotate(45 50 50)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Additional Adinkra symbol for About page hero */
.page-hero .adinkra-geometry {
    position: absolute;
    top: 50%;
    right: 8%;
    width: 120px;
    height: 120px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L90 50 L50 90 L10 50 Z' fill='none' stroke='%23075F73' stroke-width='1.5' opacity='0.08'/%3E%3Cpath d='M50 25 L75 50 L50 75 L25 50 Z' fill='none' stroke='%23CFA654' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='12' fill='none' stroke='%23075F73' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

@media (max-width: 767px) {
    .page-hero::before {
        width: 100px;
        height: 100px;
        top: 5%;
        right: 2%;
        opacity: 0.5;
    }
    
    .page-hero::after {
        width: 80px;
        height: 80px;
        bottom: 10%;
        left: 2%;
        opacity: 0.4;
    }
    
    .page-hero .adinkra-geometry {
        display: none;
    }
}

/* =========================================
   404 ERROR PAGE STYLES
   ========================================= */

.error-404-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

/* Decorative Elements */
.error-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.error-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(7, 95, 115, 0.1);
}

.error-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    border-color: rgba(207, 166, 84, 0.15);
}

.error-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
    border-color: rgba(7, 95, 115, 0.12);
}

.error-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    border-color: rgba(207, 166, 84, 0.08);
}

.error-adinkra {
    position: absolute;
    color: #075F73;
}

.error-adinkra-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 5%;
}

.error-adinkra-2 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 8%;
    color: #CFA654;
}

/* Main Container */
.error-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.error-content-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 25px 80px rgba(7, 95, 115, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* 404 Number Display */
.error-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.error-number {
    font-size: 7rem;
    font-weight: 800;
    background: linear-gradient(135deg, #075F73 0%, #0a7a94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(7, 95, 115, 0.2);
}

.error-number-middle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-compass {
    width: 100%;
    height: 100%;
    color: #CFA654;
    animation: compassSpin 8s linear infinite;
}

@keyframes compassSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-15deg); }
}

/* Text Content */
.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: #075F73;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.error-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Helpful Links */
.error-helpful-links {
    margin-bottom: 2rem;
}

.helpful-text {
    font-size: 0.95rem;
    color: #868e96;
    margin-bottom: 1rem;
}

.helpful-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.helpful-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: linear-gradient(135deg, rgba(7, 95, 115, 0.05) 0%, rgba(7, 95, 115, 0.02) 100%);
    border-radius: 12px;
    color: #075F73;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(7, 95, 115, 0.1);
}

.helpful-link:hover {
    background: linear-gradient(135deg, #075F73 0%, #0a7a94 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 95, 115, 0.25);
}

.helpful-link:hover svg {
    stroke: #ffffff;
}

.helpful-link svg {
    stroke: #CFA654;
    transition: stroke 0.3s ease;
}

/* Primary CTA */
.error-cta {
    margin-bottom: 2rem;
}

.error-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #CFA654 0%, #d4b366 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(207, 166, 84, 0.3);
}

.error-home-btn:hover {
    background: linear-gradient(135deg, #075F73 0%, #0a7a94 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(7, 95, 115, 0.35);
}

/* Search Section */
.error-search-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(7, 95, 115, 0.1);
}

.search-text {
    font-size: 0.9rem;
    color: #868e96;
    margin-bottom: 1rem;
}

.error-search-form .search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.error-search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(7, 95, 115, 0.15);
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.error-search-form input[type="search"]:focus {
    border-color: #075F73;
}

.error-search-form input[type="submit"] {
    background: #075F73;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-search-form input[type="submit"]:hover {
    background: #0a7a94;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .error-404-page {
        padding: 1.5rem 1rem;
        min-height: calc(100vh - 80px);
    }
    
    .error-content-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .error-number {
        font-size: 4.5rem;
    }
    
    .error-number-middle {
        width: 50px;
        height: 50px;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .helpful-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .helpful-link {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .error-home-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .error-search-form .search-form {
        flex-direction: column;
    }
    
    .error-search-form input[type="submit"] {
        width: 100%;
    }
    
    .error-circle-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    .error-circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .error-adinkra-1,
    .error-adinkra-2 {
        width: 80px;
        height: 80px;
    }
}