/* Homepage component elements styles */

/* ==========================================
   HERO BANNER SECTION
   ========================================== */
.about-hero-section {
    position: relative;
    background-image: linear-gradient(to right, var(--color-brand-navy), #0A1A24, #0D2E38);
    color: var(--color-white);
    overflow: hidden;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .about-hero-section { padding: 6rem 0; }
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(var(--color-brand-teal) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.breadcrumb-nav {
    font-size: 0.75rem;
    color: var(--color-slate-400);
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .breadcrumb-nav { font-size: 0.875rem; margin-bottom: 1.5rem; }
}

.breadcrumb-nav .separator {
    margin: 0 0.5rem;
    color: var(--color-slate-500);
}

.breadcrumb-nav .current {
    color: var(--color-white);
    font-weight: 500;
}

.about-hero-wrap {
    max-width: 48rem;
    text-align: left;
}

.about-hero-wrap h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .about-hero-wrap h1 { font-size: 2.5rem; }
}
@media (min-width: 1024px) {
    .about-hero-wrap h1 { font-size: 3rem; }
}

.about-hero-wrap p {
    font-size: 1rem;
    color: var(--color-slate-300);
    line-height: 1.625;
}

.blueprint-feature-active {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    max-width: 24rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.blueprint-feature-active .icon-badge {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background-color: rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-teal);
    font-weight: bold;
    flex-shrink: 0;
}

/* ==========================================
   STRENGTHS & CAPABILITIES SECTION
   ========================================== */
.strengths-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .strengths-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .strengths-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.strength-card {
    background-color: rgba(248, 250, 252, 0.5);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: var(--transition-all-300);
}

.strength-card:hover {
    background-color: var(--color-white);
    border-color: var(--color-brand-teal);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.strength-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-xl);
    background-color: var(--color-brand-teal-light);
    color: var(--color-brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: var(--transition-normal);
}
.strength-card-0 .strength-icon-wrap { background-color: rgba(0, 155, 163, 0.1); color: #009BA3; }
.strength-card-1 .strength-icon-wrap { background-color: rgba(16, 185, 129, 0.1); color: #10B981; }
.strength-card-2 .strength-icon-wrap { background-color: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.strength-card-3 .strength-icon-wrap { background-color: rgba(99, 102, 241, 0.1); color: #6366F1; }

.strength-card-0:hover .strength-icon-wrap { background-color: #009BA3 !important; color: #fff !important; }
.strength-card-1:hover .strength-icon-wrap { background-color: #10B981 !important; color: #fff !important; }
.strength-card-2:hover .strength-icon-wrap { background-color: #F59E0B !important; color: #fff !important; }
.strength-card-3:hover .strength-icon-wrap { background-color: #6366F1 !important; color: #fff !important; }

.strength-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.strength-card p {
    font-size: 0.8125rem;
    color: var(--color-slate-500);
    line-height: 1.5;
}

/* ==========================================
   LATEST NEWS GRID (Home / Archives)
   ========================================== */
.news-grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .news-grid-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .news-grid-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.news-card-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-slate-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-all-300);
}

.news-card-item:hover {
    border-color: rgba(0, 155, 163, 0.4);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.news-card-img-box {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: var(--color-slate-100);
    overflow: hidden;
}

.news-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card-item:hover .news-card-img-box img {
    transform: scale(1.03);
}

.news-card-date-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: var(--color-brand-navy);
    color: var(--color-white);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.news-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-card-body h3 {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-slate-900);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition-fast);
}

.news-card-item:hover .news-card-body h3 {
    color: var(--color-brand-teal);
}

.news-card-body p {
    font-size: 0.75rem;
    color: var(--color-slate-400);
}

.btn-news-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-brand-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: start;
    margin-top: auto;
}

.btn-news-detail:hover {
    color: var(--color-brand-teal-dark);
}

/* ==========================================
   FINAL CONSULTATION CTA SECTION
   ========================================== */
.consultation-cta-box-span-3 {
    background-image: linear-gradient(to bottom right, var(--color-brand-teal), var(--color-brand-navy));
    color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    border: 1px solid var(--color-slate-900);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .consultation-cta-box-span-3 {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.consultation-cta-box-span-3::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(var(--color-white) 1px, transparent 1px);
    background-size: 24px 24px;
}

.consultation-box-text {
    position: relative;
    z-index: 10;
    max-width: 36rem;
}

.consultation-box-text .badge {
    font-size: 9px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-brand-teal-light);
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.consultation-box-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 0.75rem;
}

.consultation-box-text p {
    font-size: 0.8125rem;
    color: var(--color-slate-300);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.btn-consult-now-about {
    position: relative;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-teal);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-all-300);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-consult-now-about:hover {
    background-color: var(--color-white);
    color: var(--color-brand-navy);
    transform: translateY(-1px);
}
