/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a1628;
    --primary-blue: #1e3a8a;
    --secondary-blue: #1e40af;
    --accent-blue: #3b82f6;
    --primary-gold: #f59e0b;
    --secondary-gold: #d97706;
    --dark-gold: #b45309;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --text-dark: #1e293b;
    --background-dark: #0f172a;
    --background-card: #1e293b;
    --border-color: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.gold-highlight {
    color: var(--primary-gold);
    font-style: italic;
}

.highlight-text {
    color: var(--primary-gold);
    font-style: italic;
    transition: all 0.3s ease;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--background-dark) 50%, var(--primary-blue) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
}

.hero-description p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-gold);
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Value Proposition Section */
#value-prop {
    padding: 8rem 0;
    background: var(--background-dark);
}

.value-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
    font-weight: 700;
}

.value-statement h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-gray);
}

/* Stats Section */
#stats {
    padding: 6rem 0;
    background: var(--primary-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stat-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.stat-link a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.stat-link a:hover {
    color: var(--secondary-gold);
}

/* Philosophy Section */
#philosophy {
    padding: 8rem 0;
    background: var(--background-dark);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.philosophy-cta {
    margin-top: 2rem;
}

.secondary-button {
    background: transparent;
    color: var(--primary-gold);
    padding: 1rem 2rem;
    text-decoration: none;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-element {
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.line-element {
    width: 100px;
    height: 2px;
    background: var(--accent-blue);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: pulse 3s ease-in-out infinite;
}

.dot-element {
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: absolute;
    top: 30%;
    right: 20%;
    animation: float 4s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Approach Preview */
#approach-preview {
    padding: 8rem 0;
    background: var(--primary-dark);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.approach-card {
    background: var(--background-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.approach-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-arrow {
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

.approach-card:last-child .card-arrow {
    display: none;
}

.approach-cta {
    text-align: center;
    margin-top: 3rem;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.primary-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.secondary-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Expertise Section */
#expertise {
    padding: 8rem 0;
    background: var(--background-dark);
}

.expertise-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.expertise-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.expertise-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.expertise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 1.5rem;
}

/* CTA Section */
#cta-section {
    padding: 8rem 0;
    background: var(--primary-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
#contact {
    padding: 8rem 0;
    background: var(--background-dark);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: var(--background-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--text-light);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Footer */
footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
}

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

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tagline {
    color: var(--text-gray);
    font-style: italic;
}

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

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-highlights {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .card-arrow {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.approach-card,
.stat-item,
.highlight-item {
    animation: fadeInUp 0.6s ease-out;
}



/* Case Studies Page */
#case-studies-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--background-dark) 100%);
    overflow: hidden;
}

#case-studies-list {
    padding: 8rem 0;
    background: var(--background-dark);
}

.case-study-full {
    background: var(--background-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 4rem;
    overflow: hidden;
}

.case-study-header {
    padding: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.case-study-client {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
}

.case-study-body {
    padding: 3rem;
}

.case-study-section {
    margin-bottom: 2rem;
}

.case-study-section:last-child {
    margin-bottom: 0;
}

.case-study-section h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.case-study-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.case-study-section.outcome {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.case-study-section.outcome h3 {
    color: var(--text-light);
}



/* Approach Page */
#approach-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--background-dark) 100%);
    overflow: hidden;
}

#approach-overview {
    padding: 6rem 0;
    background: var(--primary-dark);
    text-align: center;
}

.approach-intro h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.approach-intro p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

#approach-steps {
    padding: 8rem 0;
    background: var(--background-dark);
}

.step-detail {
    margin-bottom: 6rem;
    background: var(--background-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.step-detail:last-child {
    margin-bottom: 0;
}

.step-header {
    padding: 3rem;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    min-width: 80px;
}

.step-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin: 0;
}

.step-content {
    padding: 3rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-activities {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--primary-dark);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.step-activities h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-activities ul {
    list-style: none;
    padding: 0;
}

.step-activities ul li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-activities ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

#approach-cta {
    padding: 8rem 0;
    background: var(--primary-dark);
    text-align: center;
}

#approach-cta .cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

#approach-cta .cta-content p {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Responsive adjustments for approach page */
@media (max-width: 768px) {
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        min-width: auto;
    }
}


/* ===== INSIGHTS PAGE STYLES ===== */

#insights-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 100%);
    overflow: hidden;
}

#insights-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

#insights-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

#insights-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

#insights-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

#insights-content {
    padding: 5rem 0;
    background: #0f172a;
}

.insights-header {
    margin-bottom: 4rem;
    text-align: center;
}

.insights-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.insights-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.insights-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(30, 58, 138, 0.3);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 58, 138, 0.5);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f59e0b;
    color: #0a1628;
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.insight-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.insight-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.insight-source,
.insight-category,
.insight-date {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.insight-source {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.insight-category {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.insight-date {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.insight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.insight-card.featured h3 {
    font-size: 1.75rem;
}

.insight-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.read-more {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d97706;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

/* Latest Updates Section */
#latest-updates {
    padding: 4rem 0;
    background: rgba(10, 22, 40, 0.5);
}

.updates-header {
    text-align: center;
    margin-bottom: 3rem;
}

.updates-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.updates-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.update-card {
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-3px);
    border-color: rgba(245, 158, 11, 0.5);
}

.update-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.update-source {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 500;
}

.update-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.update-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.update-engagement {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.engagement-stats {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.updates-cta {
    text-align: center;
}

/* Newsletter Signup */
#newsletter-signup {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0a1628 100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

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

.newsletter-form button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

.newsletter-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Responsive Design for Insights */
@media (max-width: 768px) {
    #insights-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .insights-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-card.featured {
        grid-column: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for filtered content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
