/* About Us Custom Premium Dark Theme Styling */

/* Hero Section */
.aj-about-hero {
    position: relative;
    padding: 160px 0; /* Premium spacing */
    text-align: center;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
}

.aj-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 7, 10, 0.7) 0%, rgba(3, 7, 10, 0.95) 100%) !important;
    z-index: 1;
}

.aj-about-hero .aj-home-container {
    position: relative;
    z-index: 2;
}

.aj-about-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.25) !important;
}

.aj-about-subtitle {
    font-size: 20px;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Two-column layout */
.aj-about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.aj-about-col-content {
    flex: 1;
}

.aj-about-col-image {
    flex: 1;
}

.aj-about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 1.2 / 1;
}

.aj-about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aj-about-text {
    font-size: 16.5px;
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 24px;
}

.aj-highlight-box {
    border-left: 3px solid #d4af37;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.6;
}

/* Value Props / Pillars */
.aj-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aj-pillar-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aj-pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.aj-pillar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aj-about-icon {
    width: 100%;
    height: 100%;
    color: #d4af37;
    transition: color 0.4s ease, transform 0.4s ease;
}

.aj-pillar-card:hover .aj-pillar-icon {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px) rotate(3deg);
}

.aj-pillar-card:hover .aj-about-icon {
    color: #03070a;
    transform: scale(1.05);
}

.aj-pillar-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.aj-pillar-desc {
    font-size: 14.5px;
    color: #a0aec0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .aj-about-row {
        flex-direction: column;
        gap: 40px;
    }
    .aj-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .aj-about-title {
        font-size: 40px;
    }
    .aj-about-subtitle {
        font-size: 18px;
    }
}
