/*
=========================================
   DESIGN SYSTEM & VARIABLES
=========================================*/
:root {
    --bg-primary: #02030a;
    --bg-secondary: #0a0b1c;
    --bg-glass: rgba(0, 0, 102, 0.15);
    --border-glass: rgba(255, 160, 0, 0.1);
    
    --accent-gold: #FFA500;
    --accent-navy: #000066;
    
    /* Aliases */
    --accent-violet: var(--accent-gold);
    --accent-cyan: var(--accent-gold);
    --accent-green: var(--accent-gold);
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    
    --gradient-accent: linear-gradient(135deg, #FFA500, #FFC837);
    --shadow-accent: 0 10px 30px rgba(255, 165, 0, 0.2);
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }
.bg-darker { background-color: var(--bg-secondary); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-tag {
    display: inline-block;
    background: rgba(255, 165, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 165, 0, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.section-lead { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #000;
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(255, 165, 0, 0.35); }

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid rgba(255, 165, 0, 0.4);
}
.btn-secondary:hover { border-color: var(--accent-gold); color: var(--accent-gold); transform: translateY(-2px); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(2, 3, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-img { height: 42px; width: auto; display: block; }

.nav-logo .accent { color: var(--accent-gold); }

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }

.nav-highlight {
    background: var(--gradient-accent) !important;
    color: #000 !important;
    padding: 0.4rem 1rem !important;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}
.nav-highlight:hover {
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
    transform: translateY(-1px);
}

.nav-toggle { display: none; cursor: pointer; font-size: 1.3rem; }

/* =========================================
   HERO
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 0, 102, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 60%),
        url('casperjoeokpara.jpg');
    background-size: cover;
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 3, 10, 0.5); /* 50% opacity for better image visibility */
}

.hero-container {
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 165, 0, 0.08);
    border: 1px solid rgba(255, 165, 0, 0.25);
    color: var(--accent-gold);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-roles {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: rgba(0, 0, 102, 0.2);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.2rem 0;
    overflow: hidden;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow: hidden;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    background: rgba(255, 166, 0, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 166, 0, 0.3);
}

.trust-logos-wrapper {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.trust-logos {
    display: flex;
    gap: 3rem;
    animation: scrollTrust 22s linear infinite;
    flex-shrink: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    font-family: var(--font-heading);
    transition: var(--transition);
}
.trust-item:hover { color: var(--accent-gold); }
.trust-item i { color: var(--accent-gold); }

@keyframes scrollTrust {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================
   RESULTS SECTION
   ========================================= */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    transition: var(--transition);
}
.result-item:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateX(5px); }

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.result-content h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.result-content p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid { gap: 2rem; align-items: stretch; }

.service-card {
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(255, 165, 0, 0.3); }

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.service-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; flex: 1; }

.service-points {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.service-points li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-left: 1rem;
    position: relative;
}
.service-points li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* =========================================
   CASE STUDIES
   ========================================= */
.case-grid { gap: 2rem; align-items: stretch; }

.case-card {
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.case-card:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateY(-5px); }

.case-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 165, 0, 0.15);
    line-height: 1;
}

.case-card h3 { font-size: 1.05rem; margin-bottom: 0; }

.case-section { display: flex; flex-direction: column; gap: 0.4rem; }

.case-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    width: fit-content;
}
.case-label.problem {
    background: rgba(255, 60, 60, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 60, 60, 0.2);
}
.case-label.action {
    background: rgba(255, 165, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.case-section p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.case-section ul { display: flex; flex-direction: column; gap: 0.3rem; }
.case-section ul li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-left: 1rem;
    position: relative;
}
.case-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.case-result {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    background: rgba(255, 165, 0, 0.06);
    border: 1px solid rgba(255, 165, 0, 0.15);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    margin-top: auto;
}
.case-result i { color: var(--accent-gold); margin-top: 2px; flex-shrink: 0; }
.case-result strong { font-size: 0.88rem; line-height: 1.4; }

/* =========================================
   AUTHORITY SECTION
   ========================================= */
.authority-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.5rem;
}
.authority-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.authority-list li i { color: var(--accent-gold); margin-top: 3px; flex-shrink: 0; }

.cred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.cred-card {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    transition: var(--transition);
}
.cred-card:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateY(-4px); }
.cred-card i { font-size: 2rem; color: var(--accent-gold); }
.cred-card span { font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; }

/* =========================================
   ABOUT SECTION
   ========================================= */
.profile-card-glass {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.glass-header {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.glass-content { padding: 1.5rem; }
.glass-content h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.glass-content .title { color: var(--accent-gold); font-size: 0.9rem; margin-bottom: 1rem; }

.glass-divider { border: none; border-top: 1px solid var(--border-glass); margin: 1rem 0; }

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.88rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-row span:first-child { color: var(--text-muted); }
.stat-row span:last-child { font-weight: 600; font-family: var(--font-heading); }

.who-i-work-with { padding: 1.5rem; }
.who-i-work-with h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.who-i-work-with ul { display: flex; flex-direction: column; gap: 0.7rem; }
.who-i-work-with li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.who-i-work-with li i { color: var(--accent-gold); font-size: 0.85rem; width: 16px; }

/* =========================================
   SKILLS
   ========================================= */
.skills-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.skill-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    cursor: default;
    font-family: var(--font-heading);
}
.skill-card:hover { border-color: rgba(255, 165, 0, 0.3); color: var(--accent-gold); }
.skill-card i { color: var(--accent-gold); }

/* =========================================
   ROLES / EXPERIENCE
   ========================================= */
.roles-grid { gap: 2rem; }

.role-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}
.role-card:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateY(-5px); }

.role-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 0 auto 1rem;
}

.role-card h3 { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.role-card h4 { font-size: 1.1rem; margin-bottom: 0.7rem; color: var(--text-main); }
.role-card p { color: var(--text-muted); font-size: 0.88rem; }

/* =========================================
   TRAINING SECTION
   ========================================= */
.platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.platform-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-muted);
    transition: var(--transition);
}
.platform-item:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.topics-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}
.topic-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.topic-item i { color: var(--accent-gold); }

/* Training Mini Visuals */
.training-visuals-mini { gap: 1.5rem; }
.training-visuals-mini .flyer-card {
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.training-visuals-mini .flyer-card:hover { transform: translateY(-5px); border-color: rgba(255, 165, 0, 0.3); }
.training-visuals-mini .flyer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   STATS / ACHIEVEMENTS
   ========================================= */
.stats-grid { gap: 2rem; }

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}
.stat-card:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateY(-5px); }

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.stat-suffix { font-size: 2rem; font-weight: 800; color: var(--accent-gold); }
.stat-label { color: var(--text-muted); margin-top: 0.5rem; }

.achievements-detail { gap: 3rem; margin-top: 3rem; align-items: start; }

.achv-list h3 { margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.feature-list li i { color: var(--accent-gold); margin-top: 3px; flex-shrink: 0; }

.achv-quote-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
}
.quote-mark {
    font-size: 5rem;
    color: rgba(255, 165, 0, 0.15);
    font-family: serif;
    line-height: 1;
    margin-bottom: -1rem;
}
.quote-text { font-size: 1.1rem; font-style: italic; color: var(--text-main); line-height: 1.7; }
.quote-author { display: block; margin-top: 1rem; color: var(--accent-gold); font-weight: 700; font-family: var(--font-heading); }

/* =========================================
   PUBLICATIONS & BOOKS
   ========================================= */
.books-grid { gap: 2rem; align-items: stretch; }

.book-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    transition: var(--transition);
}
.book-card:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateY(-5px); }

.book-cover {
    width: 120px;
    height: 160px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(0,0,102, 0.3));
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    flex-shrink: 0;
    overflow: hidden;
}

.book-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book-cover i { font-size: 2.2rem; color: var(--accent-gold); margin-bottom: 0.6rem; }
.book-cover h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--text-main); line-height: 1.2; }

.book-info h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.book-info .subtitle { color: var(--accent-gold); font-size: 0.82rem; font-weight: 600; margin-bottom: 0.8rem; }
.book-info .desc { color: var(--text-muted); font-size: 0.83rem; line-height: 1.5; }

/* =========================================
   EVENTS SECTION
   ========================================= */
.event-banner {
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 0, 102, 0.5), var(--bg-primary));
    text-align: center;
    padding: 2rem;
}
.event-banner h2 { font-size: 1.8rem; font-weight: 800; }

.event-tag-live {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--accent-gold); color: #000;
    padding: 0.25rem 0.8rem; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
}
.banner-icon { font-size: 3.5rem; color: rgba(255, 165, 0, 0.08); margin-top: 0.5rem; }

/* =========================================
   GALLERY
   ========================================= */
.gallery-filters {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.filter-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-accent);
    color: #000;
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.gallery-item:hover { transform: translateY(-5px); border-color: rgba(255, 165, 0, 0.3); }

.gallery-img {
    height: 200px;
    background: rgba(0,0,0,0.2);
    overflow: hidden;
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-img img { transform: scale(1.05); }

.gallery-info { padding: 1.2rem; }
.item-tag {
    display: inline-block;
    background: rgba(255, 165, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 165, 0, 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}
.gallery-info h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.gallery-info p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 0.5rem; }
.item-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--text-muted); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid { gap: 2rem; align-items: stretch; }

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(255, 165, 0, 0.3); transform: translateY(-5px); }

.quote-top i { font-size: 1.5rem; color: var(--accent-gold); opacity: 0.6; }
.testimonial-card > p { color: var(--text-muted); font-style: italic; line-height: 1.7; font-size: 0.95rem; flex: 1; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { display: block; color: var(--text-muted); font-size: 0.8rem; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.cont.about-text { padding-right: 1rem; }

/* Profile Photo */
.profile-photo-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 165, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    max-height: 380px;
}
.profile-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}
.profile-photo-wrapper:hover .profile-photo { transform: scale(1.03); }

/* Logo sizing */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
    filter: brightness(1.1);
}
.contact-info { padding-right: 2rem; }
.contact-methods { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}
.method-item h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.method-item p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255, 165, 0, 0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.footer-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-location { margin-bottom: 1rem !important; }
.footer-cta-btns { margin-top: 0.5rem; }

.footer-email { margin-top: 1rem; }
.footer-email a { color: var(--text-muted); font-size: 0.85rem; }
.footer-email a:hover { color: var(--accent-gold); }

.footer-links h4, .footer-socials h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-main);
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links li a:hover { color: var(--accent-gold); }

.social-icons { display: flex; gap: 1rem; margin-bottom: 1rem; }
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-icons a:hover { color: var(--accent-gold); border-color: var(--accent-gold); }

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .skills-grid-full { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .skills-grid-full { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .case-grid { grid-template-columns: 1fr; }
    .books-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-secondary);
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .book-card { flex-direction: column; }
    .contact-info { padding-right: 0; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .achievements-detail { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .skills-grid-full { grid-template-columns: 1fr 1fr; }
    .section-padding { padding: 3rem 0; }
}
