/*
Theme Name: Scott Keever Scholarship
Theme URI: https://scottkeeverscholarship.com
Author: Scott Keever tset
Author URI: https://scottkeever.io
Description: A premium scholarship theme for the Scott Keever Scholarship — supporting the next generation of digital marketers and entrepreneurs with a $1,000 annual award.
Version: 5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sk-scholarship
Tags: scholarship, education, one-page, custom-logo, custom-menu, featured-images
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0B1D3A;
    --navy-dark: #081529;
    --navy-light: #132D54;
    --gold: #C8A24E;
    --gold-light: #E4C76B;
    --gold-dark: #A6832E;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --gray-light: #E8EBF0;
    --gray: #8892A4;
    --gray-dark: #4A5568;
    --text-dark: #1A202C;
    --text-body: #2D3748;
    --success: #38A169;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 162, 78, 0.15);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(8, 21, 41, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-logo a span {
    color: var(--gold);
}

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

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

.nav-cta a {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.nav-cta a::after {
    display: none;
}

.nav-cta a:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--navy);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    list-style: none;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--white);
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding-left: 1.5rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 850px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 162, 78, 0.15);
    border: 1px solid rgba(200, 162, 78, 0.3);
    color: var(--gold-light);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    color: var(--white);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-amount {
    margin-bottom: 2.5rem;
}

.hero-amount .dollar {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    vertical-align: top;
    line-height: 1;
}

.hero-amount .amount {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-amount .label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 162, 78, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-light {
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .overline {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   ABOUT / DETAILS SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text .overline {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   VALUES / FEATURES CARDS
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.value-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Dark variation */
.section-dark .value-card {
    background: var(--navy-light);
    border-color: rgba(200, 162, 78, 0.15);
}

.section-dark .value-card:hover {
    border-color: var(--gold);
}

.section-dark .value-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
    flex-wrap: wrap;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.trust-badge {
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.trust-badge:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-badge img {
    /* height: 45px; */
    width: auto;
}

/* ============================================
   ELIGIBILITY SECTION
   ============================================ */
.eligibility-list {
    max-width: 700px;
    margin: 0 auto;
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eligibility-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.8rem;
    margin-top: 2px;
}

.eligibility-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ============================================
   ESSAY TOPICS
   ============================================ */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.topic-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.topic-card p {
    color: var(--text-body);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.1) 0%, transparent 70%);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-banner .btn {
    position: relative;
}

/* ============================================
   BIO PAGE
   ============================================ */
.bio-hero {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
    padding: 10rem 0 5rem;
    text-align: center;
}

.bio-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.bio-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.bio-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-sidebar {
    position: sticky;
    top: 100px;
}

.bio-photo {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.bio-photo img {
    width: 100%;
    height: auto;
}

.bio-credentials {
    background: var(--off-white);
    border-radius: 8px;
    padding: 1.5rem;
}

.bio-credentials h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.bio-credentials ul {
    list-style: none;
}

.bio-credentials li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.9rem;
    color: var(--gray-dark);
    padding-left: 1.2rem;
    position: relative;
}

.bio-credentials li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.bio-credentials li:last-child {
    border-bottom: none;
}

.bio-main h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.bio-main h2:first-child {
    margin-top: 0;
}

/* ============================================
   APPLICATION PAGE
   ============================================ */
.page-hero {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
    padding: 10rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.application-form-section {
    padding: 5rem 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-light);
}

.form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.form-wrapper>p {
    color: var(--gray);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    min-width: 20px;
    text-align: center;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--gray-dark);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-card {
    background: var(--navy);
    padding: 3rem;
    border-radius: 8px;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(200, 162, 78, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contact-detail h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-light);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Footer Founder Bio Strip */
.footer-founder {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-bio-strip {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.founder-thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--gold);
}

.founder-bio-text h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.founder-bio-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.founder-bio-text a {
    color: var(--gold);
}

.founder-bio-text a:hover {
    color: var(--gold-light);
}

.founder-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.founder-social a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(200, 162, 78, 0.1);
    border: 1px solid rgba(200, 162, 78, 0.25);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.founder-social a:hover {
    background: rgba(200, 162, 78, 0.2);
    border-color: var(--gold);
    color: var(--gold-light);
}

/* ============================================
   BLOG ARCHIVE & SINGLE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.blog-card-content h3 a {
    color: var(--text-dark);
}

.blog-card-content h3 a:hover {
    color: var(--gold);
}

.blog-card-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

.single-post-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 3rem 0;
}

.single-post-content h1 {
    margin-bottom: 1rem;
}

.post-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
}

.page-404 h1 {
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.page-404 h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-404 p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* ============================================
   SCHEMA BADGE (Structured Data Visual)
   ============================================ */
.scholarship-schema-badge {
    display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-amount .amount {
        font-size: 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-content {
        grid-template-columns: 1fr;
    }

    .bio-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .founder-bio-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founder-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        align-items: flex-start;
    }

    .sk-featured-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-amount .amount {
        font-size: 3.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr !important;
    }

    .header-inner {
        height: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        border-top: 1px solid rgba(200, 162, 78, 0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu a::after {
        display: none;
    }

    /* Mobile dropdown */
    .has-dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.15);
        border: none;
        border-radius: 6px;
        box-shadow: none;
        min-width: auto;
        margin-top: 0.5rem;
        padding: 0.25rem 0;
    }

    .dropdown-menu a {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

}

@media (max-width: 480px) {
    .trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    }
    .btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 4px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid transparent;
        text-align: center;
    }

    .nav-menu {
        align-items: flex-start;
    }

    .sk-featured-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-amount .amount {
        font-size: 3rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .form-wrapper {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }
}