/* ============================================
   AI BARBADOS - Stylized Website
   Color Palette: Barbadian flag inspired
   Ultramarine Blue (#00267F), Gold (#FFC726), Black (#0D0D0D)
   ============================================ */

/* --- CSS Variables --- */
:root {
    --black: #0D0D0D;
    --gold: #FFC726;
    --blue: #00267F;
    --blue-dark: #001A5C;
    --blue-light: #003399;
    --gold-light: #FFD54F;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-glow-gold: 0 0 30px rgba(255, 199, 38, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(0, 38, 127, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(0, 38, 127, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-color: var(--blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full {
    width: 100%;
}

/* --- Particle Canvas --- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    gap: 2px;
}

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

.logo-barbados {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    position: relative;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #0D0D0D 0%, #0a1628 40%, #0D0D0D 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 38, 127, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 199, 38, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 38, 127, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255, 199, 38, 0.08);
    border: 1px solid rgba(255, 199, 38, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-light);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--white);
    font-family: var(--font-heading);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(45deg) translateY(10px); opacity: 1; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    transform: scaleX(0);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 56px;
    height: 56px;
    color: var(--blue);
    margin-bottom: 20px;
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   INITIATIVES SECTION
   ============================================ */
.initiatives {
    background: var(--white);
}

.initiatives-grid {
    display: grid;
    gap: 24px;
}

.initiative-card {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.initiative-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-glow-blue);
    transform: translateX(8px);
}

.initiative-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.initiative-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.initiative-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.initiative-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.initiative-tags li {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(0, 38, 127, 0.08);
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTORS SECTION
   ============================================ */
.sectors {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sector-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.sector-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    color: var(--blue);
    transform: scale(1.1);
}

.sector-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.sector-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   EDUCATION SECTION
   ============================================ */
.education {
    background: var(--white);
}

.education-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.education-text .section-tag {
    margin-bottom: 16px;
}

.education-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.education-text > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}

.education-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.edu-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.edu-feature-icon {
    width: 40px;
    height: 40px;
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.edu-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.edu-feature p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Code Window Animation */
.code-window {
    background: #1E1E2E;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(0, 38, 127, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-header .dot.red { background: #FF5F57; }
.code-header .dot.yellow { background: #FFBD2E; }
.code-header .dot.green { background: #28CA42; }

.code-title {
    margin-left: auto;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.code-body {
    padding: 24px;
    min-height: 320px;
}

.code-body pre {
    margin: 0;
}

.code-body code {
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.82rem;
    line-height: 1.8;
    color: #CDD6F4;
    white-space: pre;
}

.code-body .keyword { color: #CBA6F7; }
.code-body .function { color: #89B4FA; }
.code-body .string { color: #A6E3A1; }
.code-body .comment { color: #6C7086; font-style: italic; }
.code-body .number { color: #FAB387; }
.code-body .variable { color: #F9E2AF; }
.code-body .operator { color: #89DCEB; }

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.community-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.community-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.community-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--black) 0%, #0a1628 100%);
    color: var(--white);
    border: 1px solid rgba(255, 199, 38, 0.2);
    padding: 48px;
}

.community-card.featured:hover {
    box-shadow: var(--shadow-glow-gold);
}

.community-card-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.community-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.community-card:not(.featured) h3 {
    color: var(--gray-900);
}

.community-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.community-card:not(.featured) p {
    color: var(--gray-600);
}

.community-card.featured p {
    color: rgba(255,255,255,0.7);
}

.community-card-meta {
    display: flex;
    gap: 24px;
    font-size: 0.82rem;
    font-weight: 500;
}

.community-card.featured .community-card-meta {
    color: var(--gold);
    margin-bottom: 24px;
}

.community-card:not(.featured) .community-card-meta {
    color: var(--blue);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--black) 0%, #0a1628 100%);
    padding: 80px 0;
}

.testimonial-carousel {
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ============================================
   STARAPPLE AI SECTION
   ============================================ */
.starapple {
    background: linear-gradient(135deg, var(--black) 0%, #0a1628 50%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.starapple::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 199, 38, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.starapple-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.starapple .section-title {
    color: var(--white);
}

.starapple .section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.contact-item svg {
    color: var(--blue);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 38, 127, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 32px;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
}

.footer-flag {
    display: flex;
    gap: 4px;
}

.flag-bar {
    width: 24px;
    height: 4px;
    border-radius: 2px;
}

.flag-bar.blue { background: var(--blue); }
.flag-bar.gold { background: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

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

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

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

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

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

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

    .education-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .initiative-card {
        flex-direction: column;
        gap: 16px;
        padding: 28px;
    }

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

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

    .community-card.featured {
        padding: 32px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ============================================
   BLOG PAGES
   ============================================ */

/* Blog Page Body */
.blog-page {
    padding-top: 0;
}

.blog-page .navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

/* Blog Hero */
.blog-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #0D0D0D 0%, #0a1628 40%, #0D0D0D 100%);
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 38, 127, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 199, 38, 0.08) 0%, transparent 50%);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    margin: 16px 0;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Categories */
.blog-categories {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.category-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.category-tab:hover {
    color: var(--blue);
    border-color: var(--blue);
    background: rgba(0, 38, 127, 0.05);
}

.category-tab.active {
    color: var(--white);
    background: var(--blue);
    border-color: var(--blue);
}

/* Blog Content Layout */
.blog-content-section {
    padding: 48px 0 80px;
    background: var(--gray-50);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image-link {
    display: block;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-card-featured {
    margin-bottom: 32px;
}

.blog-card-featured .blog-card-image {
    aspect-ratio: 21 / 9;
}

.blog-card-featured h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-featured h2 a:hover {
    color: var(--blue);
}

.blog-card-featured p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 4px 14px;
    border-radius: 50px;
    z-index: 2;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.blog-card-category {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--blue);
    background: rgba(0, 38, 127, 0.08);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-read-time {
    color: var(--gray-600);
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.blog-card > .blog-card-body > p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--white);
}

.blog-card-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
}

.blog-card-author span {
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.8;
}

.image-placeholder.large svg {
    width: 100%;
    height: 100%;
}

.image-placeholder.tourism {
    background: linear-gradient(135deg, #001a4d 0%, #002868 40%, #001a4d 100%);
}

.image-placeholder.getting-started {
    background: linear-gradient(135deg, #0a1628 0%, #16213e 50%, #0f3460 100%);
}

.image-placeholder.business {
    background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 50%, #0a1628 100%);
}

.image-placeholder.ai-tools {
    background: linear-gradient(135deg, #0D0D0D 0%, #0a1628 50%, #0D0D0D 100%);
}

.image-placeholder.agriculture {
    background: linear-gradient(135deg, #0a2d1a 0%, #1a4c2a 40%, #0d3a20 100%);
}

.image-placeholder.education-img {
    background: linear-gradient(135deg, #0a1628 0%, #0f3460 50%, #0a1628 100%);
}

.image-placeholder.election {
    background: linear-gradient(135deg, #001a4d 0%, #0a1628 50%, #1a1a2e 100%);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 24px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
}

/* Sidebar Search */
.sidebar-search {
    display: flex;
    gap: 0;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.sidebar-search:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 38, 127, 0.1);
}

.sidebar-search input {
    flex: 1;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--gray-800);
    border: none;
    outline: none;
    background: var(--gray-50);
}

.sidebar-search button {
    padding: 10px 14px;
    background: var(--gray-50);
    border: none;
    cursor: pointer;
    color: var(--gray-600);
    transition: var(--transition);
}

.sidebar-search button:hover {
    color: var(--blue);
}

/* Sidebar Posts */
.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-post {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-post:hover {
    background: var(--gray-50);
}

.sidebar-post-image {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sidebar-post-image svg {
    width: 80%;
    height: 80%;
}

.sidebar-post-image.tourism-sm { background: linear-gradient(135deg, #001a4d, #002868); }
.sidebar-post-image.started-sm { background: linear-gradient(135deg, #0a1628, #0f3460); }
.sidebar-post-image.business-sm { background: linear-gradient(135deg, #0a1628, #1a1a2e); }
.sidebar-post-image.tools-sm { background: linear-gradient(135deg, #0D0D0D, #0a1628); }
.sidebar-post-image.agri-sm { background: linear-gradient(135deg, #0a2d1a, #1a4c2a); }
.sidebar-post-image.education-sm { background: linear-gradient(135deg, #0a1628, #0f3460); }
.sidebar-post-image.election-sm { background: linear-gradient(135deg, #001a4d, #0a1628); }

.sidebar-post-info h4 {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sidebar-post:hover .sidebar-post-info h4 {
    color: var(--blue);
}

.sidebar-post-info time {
    font-size: 0.72rem;
    color: var(--gray-600);
}

/* Sidebar Categories */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.88rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.sidebar-categories li:last-child a {
    border-bottom: none;
}

.sidebar-categories li a:hover {
    color: var(--blue);
}

.cat-count {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    background: var(--blue);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sidebar Newsletter */
.sidebar-newsletter {
    background: linear-gradient(135deg, var(--black) 0%, #0a1628 100%);
    border-color: rgba(255, 199, 38, 0.2);
}

.sidebar-newsletter .sidebar-title {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.1);
}

.sidebar-newsletter p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 199, 38, 0.1);
}

.newsletter-form .btn {
    width: 100%;
}

/* Sidebar Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 4px 12px;
    border-radius: 50px;
    transition: var(--transition);
}

a.tag:hover {
    color: var(--blue);
    border-color: var(--blue);
    background: rgba(0, 38, 127, 0.05);
}

/* ============================================
   BLOG POST PAGE
   ============================================ */

/* Blog Post Hero */
.blog-post-hero {
    position: relative;
    padding: 120px 0 48px;
    background: linear-gradient(160deg, #0D0D0D 0%, #0a1628 40%, #0D0D0D 100%);
    overflow: hidden;
}

.blog-post-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
}

.blog-post-hero-bg.tourism {
    background: radial-gradient(ellipse at 60% 40%, rgba(0,38,127,0.3), transparent 70%);
}

.blog-post-hero-bg.getting-started {
    background: radial-gradient(ellipse at 40% 50%, rgba(255,199,38,0.2), transparent 70%);
}

.blog-post-hero-bg.business {
    background: radial-gradient(ellipse at 50% 40%, rgba(255,199,38,0.25), transparent 60%);
}

.blog-post-hero-bg.ai-tools {
    background: radial-gradient(ellipse at 30% 50%, rgba(0,38,127,0.2), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(255,199,38,0.2), transparent 60%);
}

.blog-post-hero-bg.agriculture {
    background: radial-gradient(ellipse at 50% 60%, rgba(0,38,127,0.3), transparent 70%);
}

.blog-post-hero-bg.education-bg {
    background: radial-gradient(ellipse at 40% 40%, rgba(255,199,38,0.2), transparent 60%), radial-gradient(ellipse at 70% 70%, rgba(0,38,127,0.15), transparent 60%);
}

.blog-post-hero-bg.election {
    background: radial-gradient(ellipse at 50% 50%, rgba(0,38,127,0.25), transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(255,199,38,0.15), transparent 60%);
}

.blog-post-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    transition: var(--transition);
}

.back-to-blog:hover {
    color: var(--gold);
}

.blog-post-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-post-hero-content .blog-card-meta {
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.blog-post-hero-content .blog-card-category {
    background: rgba(0, 38, 127, 0.2);
}

.blog-post-hero-content .blog-card-author strong {
    color: var(--white);
}

.blog-post-hero-content .blog-card-author span {
    color: rgba(255,255,255,0.5);
}

/* Blog Post Content */
.blog-post-content-section {
    padding: 48px 0 80px;
    background: var(--gray-50);
}

.blog-post-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.article-body {
    padding: 40px;
}

.article-lead {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
    border-left: 3px solid var(--blue);
    padding-left: 20px;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.article-body h2:first-of-type {
    margin-top: 0;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 28px 0 12px;
}

.article-body p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-body ul, .article-body ol {
    margin: 0 0 20px 24px;
    color: var(--gray-700);
}

.article-body ul {
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 4px;
}

.article-body strong {
    color: var(--gray-900);
}

/* Article Image Block */
.article-image-block {
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-image-block .image-placeholder {
    aspect-ratio: 2 / 1;
}

.image-caption {
    display: block;
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-600);
    padding: 12px 16px;
    background: var(--gray-50);
    font-style: italic;
}

/* Article Code Block */
.article-code-block {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.code-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-content {
    padding: 20px;
    background: var(--gray-50);
}

.code-content p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.code-content p:last-child {
    margin-bottom: 0;
}

/* Article Callout */
.article-callout {
    background: linear-gradient(135deg, var(--black) 0%, #0a1628 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin: 40px 0;
    border: 1px solid rgba(255, 199, 38, 0.15);
}

.article-callout h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 0 12px;
}

.article-callout p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    margin: 24px 0;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Article Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   BLOG RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr 280px;
        gap: 28px;
    }

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

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-hero {
        padding: 100px 0 40px;
    }

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

    .blog-post-hero {
        padding: 100px 0 32px;
    }

    .blog-post-hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .article-body {
        padding: 24px;
    }

    .article-callout {
        padding: 24px;
    }

    .blog-card-featured .blog-card-image {
        aspect-ratio: 16 / 9;
    }

    .category-tabs {
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .blog-card-meta {
        gap: 8px;
    }

    .blog-card-featured h2 {
        font-size: 1.3rem;
    }

    .article-body h2 {
        font-size: 1.25rem;
    }
}

/* About AI Barbados Section */
.about-ai-barbados {
    background: linear-gradient(135deg, var(--black) 0%, #0a1628 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin: 48px 0 32px;
    border: 1px solid rgba(255, 199, 38, 0.2);
    border-left: 4px solid var(--gold);
}

.about-ai-barbados h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 0 16px;
}

.about-ai-barbados p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-ai-barbados strong {
    color: var(--white);
}

@media (max-width: 768px) {
    .about-ai-barbados {
        padding: 24px;
    }
}
