/*
Theme Name: The Lyceum EdTech Consult
Theme URI: https://thelyceumedtech.com
Author: Princess Besiwah Forson
Author URI: https://www.linkedin.com/in/princess-besiwah-forson-337b04152/
Description: A professional WordPress theme for The Lyceum EdTech Consult - Empowering learners and transforming futures through digital education.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lyceum-edtech
Tags: education, edtech, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-images, threaded-comments, translation-ready

This theme is designed to match the React/Tailwind CSS design exactly.
Theme designed and developed by Princess Besiwah Forson.
*/

/* =========================================
   CSS VARIABLES (Design System)
   ========================================= */
:root {
    /* Core Brand Colors */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 20%); /* #323232 */
    
    --card: hsl(38, 32%, 92%); /* Light sand */
    --card-foreground: hsl(0, 0%, 20%);
    
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(0, 0%, 20%);
    
    /* Primary: Teal #075F73 */
    --primary: hsl(191, 88%, 24%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Secondary: Gold #CEA353 */
    --secondary: hsl(40, 56%, 57%);
    --secondary-foreground: hsl(0, 0%, 20%);
    
    /* Gold Light: #E1C59A */
    --gold-light: hsl(38, 51%, 74%);
    
    /* Muted: Warm Sand */
    --muted: hsl(38, 32%, 94%);
    --muted-foreground: hsl(0, 0%, 40%);
    
    /* Accent: Teal variant */
    --accent: hsl(191, 88%, 24%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --border: hsl(38, 20%, 85%);
    --input: hsl(38, 20%, 85%);
    --ring: hsl(191, 88%, 24%);
    
    --radius: 0.5rem;
    
    /* Custom Brand Tokens */
    --gold: hsl(40, 56%, 57%); /* #CEA353 */
    --gold-warm: hsl(38, 51%, 74%); /* #E1C59A */
    --charcoal: hsl(0, 0%, 20%); /* #323232 */
    --teal: hsl(191, 88%, 24%); /* #075F73 */
    --teal-light: hsl(191, 50%, 40%);
    --warm-sand: hsl(38, 32%, 94%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 8px 30px -8px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 20px -4px rgba(206, 163, 83, 0.4);
    
    /* Typography */
    --font-display: 'Open Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* =========================================
   CROSS-BROWSER RESET & NORMALIZE
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/* =========================================
   CONTAINER CLASSES
   ========================================= */
.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-wide,
    .container-narrow {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-wide,
    .container-narrow {
        padding: 0 2rem;
    }
}

/* =========================================
   SECTION PADDING
   ========================================= */
.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }
}

/* =========================================
   BUTTON STYLES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(191, 88%, 20%);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
    background-color: hsl(40, 56%, 50%);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-outline-light {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--primary-foreground);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background-color: hsl(40, 56%, 50%);
}

/* =========================================
   HEADER STYLES - FIXED FOR ALL BROWSERS
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.site-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    flex-shrink: 0;
    z-index: 100;
}

.site-logo img,
.header-logo-img {
    height: 50px !important;
    width: auto !important;
    max-width: 200px;
    object-fit: contain;
    object-position: left center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (min-width: 640px) {
    .site-logo {
        height: 55px;
    }
    .site-logo img,
    .header-logo-img {
        height: 55px !important;
    }
}

@media (min-width: 768px) {
    .site-logo {
        height: 60px;
    }
    .site-logo img,
    .header-logo-img {
        height: 60px !important;
    }
}

/* Navigation - Desktop */
.main-navigation {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: flex !important;
        align-items: center;
        gap: 2rem;
    }
}

.main-navigation li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a,
.main-navigation .nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    color: var(--foreground) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.main-navigation a:hover,
.main-navigation a.current,
.main-navigation .nav-link:hover,
.main-navigation .nav-link.current {
    color: var(--primary) !important;
}

.main-navigation a.current::after,
.main-navigation .nav-link.current::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex !important;
        align-items: center;
        gap: 1rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--foreground);
    z-index: 1001;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

.menu-icon-close {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-top: 1px solid var(--border);
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: var(--shadow-card);
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-inner {
    padding: 1.5rem 1rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list li {
    margin: 0;
    padding: 0;
}

.mobile-menu a,
.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    color: var(--foreground) !important;
    text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.current,
.mobile-nav-link:hover,
.mobile-nav-link.current {
    color: var(--primary) !important;
    background-color: rgba(225, 197, 154, 0.1);
}

.mobile-menu-cta {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

/* =========================================
   FOOTER STYLES
   ========================================= */
.site-footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.footer-content {
    padding: 3rem 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: inline-block;
    background-color: var(--background);
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 3.5rem;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-nav h4,
.footer-services h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li,
.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-nav a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--secondary);
}

.footer-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-email:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-proverb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-style: italic;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--background), var(--muted), rgba(225, 197, 154, 0.2));
    padding-top: 80px;
}

.hero-image-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: none;
}

@media (min-width: 1024px) {
    .hero-image-container {
        display: block;
    }
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), rgba(255, 255, 255, 0.8), transparent);
    z-index: 10;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-geometric {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(206, 163, 83, 0.2);
    transform: rotate(-12deg) translateX(4rem) translateY(4rem);
}

.hero-content {
    position: relative;
    z-index: 20;
    padding: 5rem 0;
    max-width: 672px;
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0;
    }
}

.hero-accent-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-accent-bar {
    width: 4rem;
    height: 0.25rem;
    background-color: var(--secondary);
}

.hero-accent-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-accent {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 512px;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-decorative {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-decorative-square {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(225, 197, 154, 0.4);
    transform: rotate(45deg);
    border: 1px solid rgba(206, 163, 83, 0.3);
}

.hero-decorative-circle {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.hero-decorative-dot {
    width: 1rem;
    height: 1rem;
    background-color: var(--secondary);
}

.hero-decorative-line {
    width: 2rem;
    height: 0.25rem;
    background-color: var(--gold-warm);
}

/* Adinkra Decorative Elements */
.adinkra-top-right {
    position: absolute;
    top: 6rem;
    right: 2.5rem;
    width: 5rem;
    height: 5rem;
    opacity: 0.6;
    z-index: 10;
}

@media (min-width: 640px) {
    .adinkra-top-right {
        width: 6rem;
        height: 6rem;
    }
}

@media (min-width: 768px) {
    .adinkra-top-right {
        width: 8rem;
        height: 8rem;
    }
}

.adinkra-left-stack {
    position: absolute;
    left: 1rem;
    top: 25%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

@media (min-width: 640px) {
    .adinkra-left-stack {
        left: 2rem;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .adinkra-left-stack {
        left: 3rem;
    }
}

.adinkra-symbol {
    opacity: 0.4;
}

.adinkra-symbol.sankofa {
    width: 3.5rem;
    height: 3.5rem;
}

@media (min-width: 640px) {
    .adinkra-symbol.sankofa {
        width: 4.5rem;
        height: 4.5rem;
    }
}

@media (min-width: 768px) {
    .adinkra-symbol.sankofa {
        width: 5rem;
        height: 5rem;
    }
}

.adinkra-symbol.nea-onnim {
    width: 3rem;
    height: 3rem;
    opacity: 0.35;
}

@media (min-width: 640px) {
    .adinkra-symbol.nea-onnim {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (min-width: 768px) {
    .adinkra-symbol.nea-onnim {
        width: 4rem;
        height: 4rem;
    }
}

.adinkra-circle-decoration {
    width: 2rem;
    height: 2rem;
    border: 2px solid rgba(206, 163, 83, 0.4);
    border-radius: 50%;
}

@media (min-width: 640px) {
    .adinkra-circle-decoration {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Bottom Left Tilted Squares */
.hero-tilted-squares {
    position: absolute;
    bottom: 2rem;
    left: 1rem;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-tilted-squares {
        bottom: 3rem;
        left: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-tilted-squares {
        bottom: 4rem;
        left: 3rem;
    }
}

.tilted-square-large {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border: 2px solid rgba(225, 197, 154, 0.3);
    transform: rotate(45deg);
    bottom: -0.5rem;
    left: -0.5rem;
}

@media (min-width: 640px) {
    .tilted-square-large {
        width: 5rem;
        height: 5rem;
    }
}

@media (min-width: 768px) {
    .tilted-square-large {
        width: 6rem;
        height: 6rem;
    }
}

.tilted-square-medium {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(206, 163, 83, 0.25);
    transform: rotate(45deg);
    bottom: 1rem;
    left: 1rem;
}

@media (min-width: 640px) {
    .tilted-square-medium {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (min-width: 768px) {
    .tilted-square-medium {
        width: 4rem;
        height: 4rem;
    }
}

.tilted-square-small {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(225, 197, 154, 0.2);
    transform: rotate(45deg);
    bottom: 2rem;
    left: 2rem;
}

@media (min-width: 640px) {
    .tilted-square-small {
        width: 2rem;
        height: 2rem;
    }
}

@media (min-width: 768px) {
    .tilted-square-small {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.tilted-square-tiny {
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(206, 163, 83, 0.3);
    transform: rotate(45deg);
    bottom: 3rem;
    left: 3rem;
}

@media (min-width: 640px) {
    .tilted-square-tiny {
        width: 1rem;
        height: 1rem;
    }
}

/* =========================================
   BRAND PROMISE SECTION
   ========================================= */
.brand-promise {
    padding: 4rem 0 5rem;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .brand-promise {
        padding: 5rem 0;
    }
}

.brand-promise-text {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-foreground);
    line-height: 1.7;
}

@media (min-width: 640px) {
    .brand-promise-text {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .brand-promise-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .brand-promise-text {
        font-size: 1.875rem;
    }
}

/* =========================================
   IMPACT STATS SECTION
   ========================================= */
.impact-stats {
    padding: 3rem 0 4rem;
    background-color: rgba(225, 197, 154, 0.2);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .impact-stats {
        padding: 4rem 0;
    }
}

.impact-stats-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(206, 163, 83, 0.05), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat-item {
    padding: 1rem 1.5rem;
}

@media (min-width: 640px) {
    .stat-item {
        padding: 1.5rem;
    }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3rem;
    }
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* =========================================
   FOCUS AREAS SECTION
   ========================================= */
.focus-areas {
    position: relative;
    overflow: hidden;
    background-color: var(--background);
}

.focus-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .focus-header {
        margin-bottom: 4rem;
    }
}

.focus-header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.focus-header-line {
    width: 3rem;
    height: 2px;
    background-color: var(--secondary);
}

.focus-header-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.focus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 640px) {
    .focus-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .focus-title {
        font-size: 2.25rem;
    }
}

.focus-list {
    max-width: 768px;
    margin: 0 auto;
}

.focus-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .focus-item {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.focus-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: rgba(225, 197, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.focus-content {
    flex: 1;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .focus-content {
        padding-bottom: 2.5rem;
    }
}

.focus-item:last-child .focus-content {
    border-bottom: none;
}

.focus-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .focus-item-title {
        font-size: 1.25rem;
    }
}

.focus-item-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .focus-item-description {
        font-size: 1rem;
    }
}

/* =========================================
   SPEAKING SECTION - COMPACT DESIGN
   ========================================= */
.speaking-section {
    background-color: var(--charcoal);
    color: var(--primary-foreground);
    position: relative;
    overflow: hidden;
    padding: 3rem 0 !important;
}

@media (min-width: 768px) {
    .speaking-section {
        padding: 4rem 0 !important;
    }
}

.speaking-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem;
    height: 10rem;
    border: 1px solid rgba(225, 197, 154, 0.1);
    -webkit-transform: rotate(45deg) translateX(5rem) translateY(-5rem);
    transform: rotate(45deg) translateX(5rem) translateY(-5rem);
}

.speaking-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8rem;
    height: 8rem;
    background-color: rgba(206, 163, 83, 0.05);
    -webkit-transform: rotate(-12deg) translateX(-4rem) translateY(4rem);
    transform: rotate(-12deg) translateX(-4rem) translateY(4rem);
}

.speaking-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.speaking-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.speaking-header svg {
    color: var(--secondary);
    width: 20px;
    height: 20px;
}

.speaking-header-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.speaking-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .speaking-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .speaking-title {
        font-size: 2rem;
    }
}

.speaking-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.keynotes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.keynote-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.keynote-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.keynote-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.keynote-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}
        margin-bottom: 2.5rem;
    }
}

.keynotes-list {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

@media (min-width: 768px) {
    .keynotes-list {
        margin-bottom: 2.5rem;
    }
}

.keynote-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .keynote-item {
        font-size: 1rem;
    }
}

.keynote-bullet {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--secondary);
    margin-top: 0.5rem;
}

.keynote-text {
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   FOUNDER SECTION
   ========================================= */
.founder-section {
    position: relative;
    overflow: hidden;
    background-color: var(--muted);
}

.founder-decoration-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    border: 1px solid rgba(206, 163, 83, 0.1);
    transform: rotate(45deg) translateX(8rem) translateY(-8rem);
}

.founder-decoration-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background-color: rgba(7, 95, 115, 0.05);
    transform: rotate(-12deg) translateX(-6rem) translateY(6rem);
}

.founder-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.founder-image-container {
    position: relative;
}

@media (min-width: 1024px) {
    .founder-image-container {
        order: 1;
    }
    .founder-content {
        order: 2;
    }
}

.founder-image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-image-frame {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary);
    border-radius: var(--radius);
    z-index: 1;
}

.founder-image-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 6rem;
    height: 6rem;
    background-color: rgba(225, 197, 154, 0.4);
    z-index: 1;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.founder-header-line {
    width: 3rem;
    height: 2px;
    background-color: var(--secondary);
}

.founder-header-text {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.founder-name {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .founder-name {
        font-size: 2.25rem;
    }
}

.founder-bio {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.founder-link:hover {
    gap: 0.75rem;
}

.founder-link svg {
    width: 18px;
    height: 18px;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-section {
    padding: 3rem 0 4rem;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }
}

.gallery-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 50, 50, 0.9) 0%, rgba(50, 50, 50, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem 2rem;
}

.gallery-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 1.25rem;
    }
}

.gallery-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .gallery-description {
        font-size: 0.875rem;
    }
}

/* =========================================
   PARTNERS SECTION
   ========================================= */
.partners-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
}

.partners-text {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 5rem 0;
    background-color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.125rem;
    }
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
    padding: 4rem 0;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

.newsletter-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(206, 163, 83, 0.1) 0%, transparent 100%);
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.newsletter-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 95, 115, 0.1);
}

.newsletter-form button {
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
}

/* =========================================
   FORMS
   ========================================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.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.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================
   ADINKRA PATTERNS
   ========================================= */
.adinkra-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.adinkra-pattern.hero {
    opacity: 0.15;
}

.adinkra-pattern.section {
    opacity: 0.08;
}

.adinkra-pattern.subtle {
    opacity: 0.1;
}

.adinkra-pattern svg {
    position: absolute;
}

/* =========================================
   BOOKING MODAL - COMPLETE REDESIGN
   ========================================= */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.booking-modal-container {
    position: relative;
    background-color: var(--background);
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.booking-modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-modal-title-wrap svg {
    color: var(--primary);
}

.booking-modal-title-wrap h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.booking-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--muted-foreground);
    transition: all 0.2s;
}

.booking-modal-close:hover {
    background-color: var(--muted);
    color: var(--foreground);
}

.booking-modal-body {
    padding: 1.5rem;
}

.booking-modal-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
}

.booking-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--muted);
    color: var(--muted-foreground);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.booking-step-indicator.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.booking-step-indicator.completed {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.booking-step-line {
    width: 3rem;
    height: 2px;
    background-color: var(--border);
}

.booking-step-line.completed {
    background-color: var(--secondary);
}

/* Step Content */
.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
}

/* Calendar Container */
#booking-calendar {
    background-color: var(--muted);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.calendar-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--foreground);
    transition: all 0.2s;
}

.calendar-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.calendar-month {
    font-weight: 600;
    font-size: 1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.calendar-day.disabled {
    color: var(--muted-foreground);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.selected {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.calendar-day.today {
    font-weight: 700;
    border: 2px solid var(--secondary);
}

/* Selected Date Display */
.booking-selected-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.booking-selected-date svg {
    color: var(--primary);
    flex-shrink: 0;
}

.booking-selected-date span {
    flex: 1;
    font-weight: 500;
}

.booking-change-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.875rem;
    text-decoration: underline;
}

.booking-change-btn:hover {
    color: var(--secondary);
}

/* Time Slots */
#booking-time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 480px) {
    #booking-time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slot-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--background);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.time-slot-btn:hover {
    border-color: var(--primary);
    background-color: rgba(7, 95, 115, 0.05);
}

.time-slot-btn.selected {
    border-color: var(--primary);
    background-color: rgba(7, 95, 115, 0.1);
    color: var(--primary);
}

.time-slot-btn svg {
    color: var(--primary);
}

/* Booking Summary */
.booking-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.booking-summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.booking-summary-item svg {
    color: var(--primary);
}

/* Booking Form */
.booking-details-form {
    display: block;
}

.booking-form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .booking-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-form-group {
    margin-bottom: 0;
}

.booking-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background-color: var(--background);
    color: var(--foreground);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 95, 115, 0.1);
}

.booking-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.booking-form-actions .btn {
    flex: 1;
}

/* Booking Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 2rem 0;
}

.booking-confirm-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background-color: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    color: #22c55e;
}

.booking-confirmation h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-confirmation > p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.booking-confirm-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.booking-confirm-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
}

.booking-confirm-item svg {
    color: var(--primary);
}

/* =========================================
   PAGE HERO SECTIONS
   ========================================= */
.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--background), var(--muted), rgba(225, 197, 154, 0.15));
}

@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 5rem;
    }
}

.page-hero-content {
    max-width: 48rem;
    position: relative;
    z-index: 10;
}

.page-hero-label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.page-hero .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .page-hero .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero .hero-title {
        font-size: 3.5rem;
    }
}

.page-hero .hero-description {
    font-size: 1.125rem;
    max-width: 48rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .page-hero .hero-description {
        font-size: 1.25rem;
    }
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
        gap: 4rem;
    }
}

.contact-form-card {
    background-color: var(--muted);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 2.5rem;
    }
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .contact-form-title {
        font-size: 1.875rem;
    }
}

.contact-form-subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--muted);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
}

.contact-info-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(206, 163, 83, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--secondary);
    width: 20px;
    height: 20px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 500;
    color: var(--foreground);
}

.contact-value a {
    color: var(--foreground);
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--primary);
}

.booking-cta-card {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-radius: 1rem;
    padding: 2rem;
}

.booking-cta-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-cta-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.booking-cta-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.response-time-card {
    background-color: rgba(206, 163, 83, 0.1);
    border: 1px solid rgba(206, 163, 83, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.response-time-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.response-time-card p {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Form Message */
.form-message {
    display: none;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.form-message.success {
    display: block;
    background-color: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-founder-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-founder-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.founder-about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
}

.founder-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/5;
    background-color: var(--muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    color: var(--muted-foreground);
}

.founder-content .section-title {
    margin-bottom: 1.5rem;
}

.founder-bio-text {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.founder-quote {
    padding-left: 1.5rem;
    border-left: 4px solid var(--secondary);
    margin-top: 2rem;
}

.founder-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.founder-quote cite {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* Mission Vision */
.mission-vision-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.mission-vision-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Values */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.value-item {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* =========================================
   IMPACT PAGE
   ========================================= */
.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .impact-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    background-color: var(--muted);
    border: 1px solid var(--border);
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .impact-number {
        font-size: 3rem;
    }
}

.impact-label {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.impact-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Stories */
.stories-section {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.stories-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-card {
    padding: 2rem;
    border-radius: var(--radius);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.story-meta h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.story-meta p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.story-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius);
    background-color: var(--muted);
    border: 1px solid var(--border);
    height: 100%;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 9999px;
    background-color: rgba(206, 163, 83, 0.1);
    color: var(--secondary);
    font-weight: 500;
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: var(--shadow-card);
}

.blog-card-image {
    aspect-ratio: 16/9;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(206, 163, 83, 0.1);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* =========================================
   404 PAGE
   ========================================= */
.error-404-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(to bottom right, var(--background), var(--muted), rgba(225, 197, 154, 0.15));
}

.error-404-content {
    text-align: center;
    max-width: 560px;
}

.error-404-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .error-404-number {
        font-size: 12rem;
    }
}

.error-404-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-404-content p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.error-404-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-center {
    text-align: center;
}

.text-secondary {
    color: var(--secondary);
}

.font-semibold {
    font-weight: 600;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 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; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-muted { background-color: var(--muted); }
.bg-background { background-color: var(--background); }
.bg-primary { background-color: var(--primary); }

.text-white { color: white; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Image Optimization */
img {
    content-visibility: auto;
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    background-color: var(--muted);
}

/* Performance optimizations */
.hero-section,
.page-hero,
.cta-section,
.brand-promise {
    contain: layout style paint;
}

/* Ensure modal is hidden on page load */
#booking-modal {
    display: none !important;
}

#booking-modal.active {
    display: flex !important;
}

/* Hero section responsive improvements */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-image-container {
        width: 100%;
        height: 50%;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 0.4;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hide tilted squares on mobile */
    .hero-tilted-squares {
        display: none;
    }
    
    /* Adinkra symbol adjustments */
    .adinkra-top-right {
        width: 60px;
        height: 60px;
        top: 1rem;
        right: 1rem;
    }
}

/* Footer responsive fixes */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Contact page responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Focus areas responsive */
@media (max-width: 640px) {
    .focus-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .focus-number {
        margin-bottom: 1rem;
    }
}

/* Founder section responsive */
@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-image-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Stats grid responsive */
@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .booking-modal,
    .mobile-menu {
        display: none !important;
    }
}

/* Critical fixes for header nav visibility */
.main-nav a,
.nav-links a {
    color: var(--foreground) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* =========================================
   SPEAKING SECTION ADINKRA SYMBOLS
   ========================================= */
.speaking-adinkra-symbols {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.speaking-adinkra {
    position: absolute;
    opacity: 0.6;
}

.speaking-adinkra-1 { top: 2rem; right: 3rem; }
.speaking-adinkra-2 { bottom: 3rem; left: 2rem; }
.speaking-adinkra-3 { top: 50%; right: 5%; transform: translateY(-50%); }
.speaking-adinkra-4 { top: 20%; left: 5%; }

/* =========================================
   PARTNER SECTION STYLING
   ========================================= */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.partner-item:hover {
    box-shadow: var(--shadow-soft);
}

.partner-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* =========================================
   TIMELINE STYLING (ABOUT PAGE)
   ========================================= */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year-badge {
    flex-shrink: 0;
    width: 5rem;
}

.timeline-year-badge span {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.timeline-card {
    flex: 1;
    padding-left: 2rem;
    border-left: 2px solid var(--border);
    padding-bottom: 2rem;
}

.timeline-event {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* =========================================
   WHY MATTERS COLUMNS (ABOUT PAGE)
   ========================================= */
.why-matters-columns {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .why-matters-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-matters-card {
    background-color: var(--muted);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.why-matters-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background-color: rgba(206, 163, 83, 0.1);
    border-radius: 50%;
    color: var(--secondary);
}

.why-matters-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.why-matters-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.why-matters-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(206, 163, 83, 0.1), rgba(7, 95, 115, 0.05));
    border-radius: var(--radius);
}

.why-matters-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* =========================================
   IMPACT PAGE STYLING
   ========================================= */
.section-title-light {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stories-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.story-avatar-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.story-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-gallery-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .impact-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.impact-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.impact-gallery-item:hover img {
    transform: scale(1.05);
}

.impact-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 95, 115, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-gallery-item:hover .impact-gallery-overlay {
    opacity: 1;
}

.impact-gallery-overlay p {
    color: white;
    font-weight: 500;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.achievement-number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.achievement-number-badge span {
    font-weight: 700;
    color: var(--secondary-foreground);
}

.achievement-text {
    color: var(--foreground);
    font-size: 1.125rem;
    line-height: 1.5;
}

/* =========================================
   FOUNDER SLIDER
   ========================================= */
.founder-slide {
    display: none;
}

.founder-slide.active {
    display: block;
}

.founder-slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.founder-nav-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.founder-nav-dot.active {
    background-color: var(--secondary);
}

/* Site title text fallback */
.site-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* =========================================
   SERVICES PAGE - ENHANCED STYLING
   ========================================= */
.benefits-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    color: #22c55e;
}

.benefit-text {
    font-size: 1.0625rem;
    color: var(--foreground);
    line-height: 1.5;
}

/* Speaking Section Enhanced */
.speaking-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    background-color: rgba(206, 163, 83, 0.2);
    border-radius: 50%;
    color: var(--secondary);
}

.speaking-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.speaking-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.speaking-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.speaking-topics-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .speaking-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.speaking-topic-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.speaking-topic-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(206, 163, 83, 0.2);
    line-height: 1;
}

.speaking-topic-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.speaking-topic-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.speaking-topic-audiences {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.audiences-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.audience-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.audience-tag-item {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    background-color: rgba(206, 163, 83, 0.15);
    color: var(--secondary);
    border-radius: 9999px;
}

/* =========================================
   BLOG PAGE - ENHANCED STYLING
   ========================================= */
.blog-filter-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    background-color: var(--background);
}

.blog-category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.blog-category-btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 9999px;
    background-color: var(--muted);
    color: var(--foreground);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.blog-category-btn:hover,
.blog-category-btn.active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.featured-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.blog-featured-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .blog-featured-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.blog-featured-image-wrap {
    aspect-ratio: 16/10;
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--muted);
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--muted), rgba(206, 163, 83, 0.1));
    color: var(--muted-foreground);
}

.blog-featured-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    background-color: rgba(206, 163, 83, 0.1);
    color: var(--secondary);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.blog-featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.3;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .blog-featured-title {
        font-size: 2rem;
    }
}

.blog-featured-title a {
    color: inherit;
    transition: color 0.2s;
}

.blog-featured-title a:hover {
    color: var(--primary);
}

.blog-featured-excerpt {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.blog-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.meta-divider {
    color: var(--border);
}

.blog-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: gap 0.2s ease;
}

.blog-read-more-btn:hover {
    gap: 0.75rem;
}

.blog-grid-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 2rem;
}

.blog-posts-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-post-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-post-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.blog-post-image {
    aspect-ratio: 16/10;
    background-color: var(--muted);
    overflow: hidden;
}

.blog-post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post-card:hover .blog-post-thumb {
    transform: scale(1.05);
}

.blog-post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--muted), rgba(206, 163, 83, 0.05));
    color: var(--muted-foreground);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(206, 163, 83, 0.1);
    color: var(--secondary);
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.blog-post-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-post-title a {
    color: inherit;
    transition: color 0.2s;
}

.blog-post-title a:hover {
    color: var(--primary);
}

.blog-post-excerpt {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.post-divider {
    color: var(--border);
}

.blog-pagination-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination-wrap a,
.blog-pagination-wrap span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.blog-pagination-wrap a {
    background-color: var(--background);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.blog-pagination-wrap a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.blog-pagination-wrap .current {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.blog-no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted-foreground);
}

.blog-no-posts svg {
    margin: 0 auto 1rem;
    opacity: 0.5;
}

.blog-newsletter-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.blog-newsletter-desc {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.blog-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto 1rem;
}

@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: var(--radius);
    background-color: var(--background);
    font-size: 1rem;
}

.blog-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    -webkit-box-shadow: 0 0 0 3px rgba(7, 95, 115, 0.1);
    box-shadow: 0 0 0 3px rgba(7, 95, 115, 0.1);
}

/* =========================================
   ABOUT PAGE - TIMELINE STYLING
   ========================================= */
.timeline-container {
    position: relative;
    padding-left: 0;
}

.timeline-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-year-badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4.5rem;
    height: 2.5rem;
    background-color: var(--secondary);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.timeline-year-badge span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary-foreground);
}

.timeline-card {
    flex: 1;
}

.timeline-event {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* =========================================
   ABOUT PAGE - WHY MATTERS COLUMNS
   ========================================= */
.why-matters-columns {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .why-matters-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-matters-card {
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-matters-card:hover {
    -webkit-box-shadow: var(--shadow-card);
    box-shadow: var(--shadow-card);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

.why-matters-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background-color: rgba(206, 163, 83, 0.15);
    border-radius: 50%;
    color: var(--secondary);
}

.why-matters-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.why-matters-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.why-matters-cta {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.why-matters-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.7;
    padding: 1.5rem;
    border-left: 4px solid var(--secondary);
    background-color: var(--muted);
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: left;
}

/* =========================================
   STORY AVATAR IMAGES
   ========================================= */
.story-avatar-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--secondary);
}

.story-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   IMPACT GALLERY GRID - 3 IMAGES
   ========================================= */
.impact-gallery-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .impact-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.impact-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
}

.impact-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.impact-gallery-item:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.impact-gallery-overlay {
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(50, 50, 50, 0.9)), color-stop(50%, rgba(50, 50, 50, 0.3)), to(transparent));
    background: linear-gradient(to top, rgba(50, 50, 50, 0.9) 0%, rgba(50, 50, 50, 0.3) 50%, transparent 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.impact-gallery-item:hover .impact-gallery-overlay {
    opacity: 1;
}

.impact-gallery-overlay p {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

/* =========================================
   HERO SECTION - MATCH REACT HEIGHT
   ========================================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    background: -webkit-gradient(linear, left top, right bottom, from(var(--background)), color-stop(var(--muted)), to(rgba(225, 197, 154, 0.2)));
    background: linear-gradient(to bottom right, var(--background), var(--muted), rgba(225, 197, 154, 0.2));
    padding-top: 80px;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 95vh;
    }
}

/* =========================================
   SECTION TITLE LIGHT (FOR DARK BG)
   ========================================= */
.section-title-light {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title-light {
        font-size: 2rem;
    }
}

.stories-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* =========================================
   PROCESS GRID (SERVICES PAGE)
   ========================================= */
.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--muted);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* =========================================
   SECTION DESCRIPTION UTILITY
   ========================================= */
.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* =========================================
   PAGE HERO SECTION
   ========================================= */
.page-hero {
    padding: 8rem 0 4rem;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 10rem 0 5rem;
    }
}

/* =========================================
   FIX FOR CROSS-BROWSER FLEXBOX
   ========================================= */
.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* =========================================
   FORM MESSAGE VISIBILITY FIX
   ========================================= */
.form-message {
    display: none;
    padding: 1rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-message.success {
    display: block !important;
    background-color: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    display: block !important;
    background-color: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* =========================================
   FIX CTA SECTION BACKGROUND COLOR
   ========================================= */
.cta-section {
    background-color: #075F73 !important;
}
