/* World-Class Professional Homepage Styling */

/* Hero Section - Premium Design */
.hero-content {
    padding: 2rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Use CSS background for homepage hero */
.hero-with-bg.hero-bg-home .hero-background {
    position: relative;
    min-height: 70vh;
    background-image: url('/assets/images/home-page-featured-top-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-with-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    color: #FFEE00;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-style: italic;
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 1.5rem 0;
    font-family: var(--font-serif);
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Section Headers - Professional Typography */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Ensure various headings on home are centered */
.card-title,
.service-title,
.article-title,
.cta-title {
    text-align: center;
}

/* Leadership Section - Professional Styling */
.leadership-description {
    margin-top: 3rem;
    padding: 2rem 0;
}

.leadership-description .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* About Section - Professional Layout */
.about-content {
    padding-right: 2rem;
}

.content-card {
    padding: 2rem 0;
}

.content-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.mission-section {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.mission-title {
    color: var(--primary);
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Premium Card Design */
.premium-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.card-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.values-grid {
    display: grid;
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.value-icon {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.value-content h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Service Cards - Professional Design */
.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-base);
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.service-icon {
    background: var(--primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

/* News Cards - Professional Design */
.news-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-base);
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.article-title {
    font-size: 1.375rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* CTA Section - Professional Background */
.cta-section {
    background: var(--primary);
    color: white;
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cta-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-outline-btn {
    border-color: white !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

.cta-outline-btn:hover {
    background: white !important;
    color: var(--primary) !important;
    border-color: white !important;
    transform: translateY(-2px);
}

/* Description sections styling */
.media-description, .news-cta {
    margin-top: 3rem;
    padding-top: 2rem;
}

.media-description p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .service-card,
    .news-card {
        margin-bottom: 2rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .mission-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .cta-actions {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .premium-card .card-body {
        padding: 2rem 1.5rem;
    }
}

/* Professional animations and transitions */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

.slide-in-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.8s ease-out forwards;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Professional spacing utilities */
.mb-12 {
    margin-bottom: 3rem;
}

/* Enhanced button styles for this page */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    min-height: 56px;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-height: 40px;
}