/**
 * Nusantara Traisser - About Page Styles
 * about.css - CSS khusus untuk halaman about
 */

/* ==========================================================================
   About Hero Section
   ========================================================================== */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    color: var(--nt-white);
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 182, 61, 0.2);
    border: 1px solid var(--nt-secondary);
    color: var(--nt-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease-out;
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.about-hero h1 span {
    color: var(--nt-secondary);
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    /* max-width: 700px; */
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.about-section {
    padding: 4.5rem 0;
}

.about-section-alt {
    background: var(--nt-light);
}

.about-section-dark {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    color: var(--nt-white);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nt-primary-light) 0%, var(--nt-primary) 100%);
    color: var(--nt-white);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-icon-light {
    background: rgba(251, 182, 61, 0.2);
    color: var(--nt-secondary);
}

/* ==========================================================================
   Company Profile Section
   ========================================================================== */
.profile-content {
    font-size: 1.05rem;
    color: var(--nt-gray);
    line-height: 1.8;
}

.profile-content p {
    margin-bottom: 1rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--nt-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--nt-secondary);
    transition: all var(--transition-base);
}

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

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--nt-primary);
    line-height: 1;
}

.stat-box .stat-label {
    font-size: 0.8rem;
    color: var(--nt-gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Vision & Mission Section - Enhanced Design
   ========================================================================== */
.about-section-vm {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.about-section-vm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.about-section-vm .section-title {
    color: var(--nt-white);
}

.about-section-vm .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.vm-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: var(--nt-secondary);
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vm-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nt-secondary) 0%, var(--nt-secondary-dark) 100%);
    color: var(--nt-dark);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.vm-card h4 {
    font-weight: 700;
    color: var(--nt-white);
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-card-body blockquote {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    border: none;
    font-style: italic;
}

.vm-card-body blockquote strong {
    color: var(--nt-secondary);
    font-style: normal;
}

.vm-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nt-secondary) 0%, var(--nt-secondary-light) 100%);
}

/* Misi List Styling */
.misi-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.misi-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.misi-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.misi-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--nt-secondary) 0%, var(--nt-secondary-dark) 100%);
    color: var(--nt-dark);
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.misi-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   Management Section (Jajaran Managemen) - Yellow Stripe Layout
   ========================================================================== */
/* Management Section */
.management-section {
    background: var(--nt-white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

/* Yellow Stripe Background for Management Section - Desktop (Full Width) */
.management-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    top: auto;
    bottom: calc(90px + 1.5rem); /* Align dengan bottom foto: info section (~90px) + margin bottom photo (1.5rem) */
    height: 200px;
    background: var(--nt-secondary);
    z-index: 0;
    pointer-events: none;
}

/* Team Section - Combined Instructors & Training Officers */
.team-section {
    background: var(--nt-white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.team-row {
    margin-bottom: 5rem;
    position: relative;
}

.team-row:last-child {
    margin-bottom: 0;
}

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

.team-row-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--nt-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-row-title i {
    color: var(--nt-primary);
    font-size: 1.5rem;
}

.team-row-description {
    font-size: 1rem;
    color: var(--nt-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Yellow Stripe Background for Instructors Row - Desktop (Full Width) */
.team-row-instructors::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    top: auto;
    bottom: calc(90px + 1.5rem); /* Align dengan bottom foto: info section (~90px) + margin bottom photo (1.5rem) */
    height: 200px;
    background: var(--nt-secondary);
    z-index: 0;
    pointer-events: none;
}

/* Green Stripe Background for Training Officers Row - Desktop (Full Width) */
.team-row-officers::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    top: auto;
    bottom: calc(90px + 1.5rem); /* Align dengan bottom foto: info section (~90px) + margin bottom photo (1.5rem) */
    height: 200px;
    background: var(--nt-primary);
    z-index: 0;
    pointer-events: none;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    align-items: end;
    padding-top: 2rem;
}

/* Ensure proper grid layout for instructors and officers */
.management-grid-instructors,
.management-grid-officers {
    max-width: 1200px;
    margin: 0 auto;
}

.management-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.management-card[data-index="0"] {
    animation-delay: 0.1s;
}

.management-card[data-index="1"] {
    animation-delay: 0.2s;
}

.management-card[data-index="2"] {
    animation-delay: 0.3s;
}

.management-card[data-index="3"] {
    animation-delay: 0.4s;
}

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

/* Photo Container - Cutout Style */
.management-photo-container {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 2;
}

/* Individual Background for Mobile */
.management-photo-bg {
    display: none;
}

.management-photo-bg-yellow {
    background: var(--nt-secondary);
}

.management-photo-bg-green {
    background: var(--nt-primary);
}

.management-photo {
    max-width: 80%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s ease;
}

.management-card:hover .management-photo {
    transform: translateY(-8px) scale(1.02);
}

/* Info Section */
.management-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.management-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nt-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.management-card:hover .management-name {
    color: var(--nt-primary);
}

.management-position {
    font-size: 0.95rem;
    color: var(--nt-gray);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.management-separator {
    width: 60px;
    height: 2px;
    background: var(--nt-secondary);
    margin: 0 auto;
    transition: width 0.4s ease;
}

.management-separator-yellow {
    background: var(--nt-secondary);
}

.management-separator-green {
    background: var(--nt-primary);
}

.management-card:hover .management-separator {
    width: 80px;
}

/* ==========================================================================
   Service Focus Section
   ========================================================================== */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.focus-card {
    background: var(--nt-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.focus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--nt-secondary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.focus-card:hover::after {
    transform: scaleX(1);
}

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

.focus-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--nt-light);
    color: var(--nt-primary);
    border-radius: var(--radius);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.focus-card h5 {
    font-weight: 600;
    color: var(--nt-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.focus-card p {
    color: var(--nt-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Business Model Section
   ========================================================================== */
.business-model-content {
    background: var(--nt-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.business-model-content p {
    color: var(--nt-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.business-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--nt-light);
    border-radius: var(--radius);
    transition: all var(--transition-fast);
}

.business-item:hover {
    background: rgba(52, 99, 79, 0.1);
}

.business-item i {
    color: var(--nt-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.business-item span {
    color: var(--nt-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   Core Services Section
   ========================================================================== */
.core-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.core-services-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.core-service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition-base);
}

.core-service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: var(--nt-secondary);
}

.core-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--nt-secondary);
    color: var(--nt-dark);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.core-service-card h5 {
    font-weight: 700;
    color: var(--nt-white);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.core-service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Training Programs Section
   ========================================================================== */
.training-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.training-tab {
    padding: 0.75rem 1.5rem;
    background: var(--nt-white);
    border: 2px solid var(--nt-gray-light);
    border-radius: var(--radius-full);
    color: var(--nt-gray);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.training-tab:hover,
.training-tab.active {
    background: var(--nt-primary);
    border-color: var(--nt-primary);
    color: var(--nt-white);
}

.training-category {
    margin-bottom: 2rem;
}

.training-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--nt-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--nt-secondary);
}

.training-category-title i {
    color: var(--nt-primary);
    font-size: 1.25rem;
}

.training-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.training-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--nt-white);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--nt-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.training-item:hover {
    background: var(--nt-primary);
    color: var(--nt-white);
    transform: translateX(4px);
}

.training-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--nt-secondary);
    color: var(--nt-dark);
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* ==========================================================================
   Certification Section (KEMNAKER)
   ========================================================================== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cert-card {
    background: var(--nt-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nt-primary) 0%, var(--nt-secondary) 100%);
}

.cert-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--nt-light);
    color: var(--nt-primary);
    border-radius: var(--radius);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cert-card h5 {
    font-weight: 700;
    color: var(--nt-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cert-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-card ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--nt-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cert-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--nt-secondary);
    font-weight: bold;
}

/* ==========================================================================
   Legality Section
   ========================================================================== */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.legal-card {
    background: var(--nt-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.legal-card h5 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--nt-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--nt-secondary);
}

.legal-card h5 i {
    color: var(--nt-primary);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--nt-gray-light);
    font-size: 0.9rem;
    color: var(--nt-gray);
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list li i {
    color: var(--nt-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-highlight {
    background: linear-gradient(135deg, var(--nt-primary) 0%, var(--nt-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--nt-white);
    margin-bottom: 2rem;
}

.portfolio-highlight h4 {
    color: var(--nt-secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-item h6 {
    color: var(--nt-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.project-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.sector-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--nt-white);
    border-radius: var(--radius-full);
    color: var(--nt-primary);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-fast);
}

.sector-tag:hover {
    background: var(--nt-primary);
    color: var(--nt-white);
    transform: translateY(-2px);
}

.sector-tag i {
    font-size: 1rem;
}

/* ==========================================================================
   Team Section - Cinematic Style
   ========================================================================== */
.about-section-team {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(251, 182, 61, 0.15) 0%, rgba(251, 182, 61, 0.08) 100%);
}

/* Background Image */
.team-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
}

.team-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient Overlay - Creates fade effect from image to content area */
.team-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    /* Multiple gradients for cinematic fade effect */
    background: 
        /* Fade from left image to right content */
        linear-gradient(to right, 
            transparent 0%, 
            transparent 30%,
            rgba(251, 198, 106, 0.3) 45%,
            rgba(251, 198, 106, 0.7) 55%,
            rgba(251, 198, 106, 0.95) 65%,
            rgba(251, 198, 106, 1) 75%,
            rgba(251, 198, 106, 1) 100%
        ),
        /* Subtle top-bottom gradient for depth */
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.05) 100%
        ),
        /* Light vignette effect on image side */
        radial-gradient(ellipse at 20% 50%, 
            transparent 0%, 
            rgba(0, 0, 0, 0.1) 100%
        );
    pointer-events: none;
}

/* Container positioning */
.about-section-team .container {
    position: relative;
    z-index: 3;
}

/* Content Wrapper with glassmorphism effect */
.team-content-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.team-content-wrapper .section-header {
    margin-bottom: 1.5rem;
}

.team-content-wrapper .section-title {
    position: relative;
    display: inline-block;
}

.team-content-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--nt-secondary) 0%, var(--nt-secondary-light) 100%);
    border-radius: 2px;
}

.team-content {
    padding-left: 0;
}

.team-content .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--nt-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-content p {
    color: var(--nt-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.team-content p:last-of-type {
    margin-bottom: 2rem;
}

.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.team-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--nt-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.team-highlight-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.team-highlight-item i {
    color: var(--nt-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.team-highlight-item span {
    color: var(--nt-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Office Locations Section
   ========================================================================== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nt-secondary);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nt-secondary);
    color: var(--nt-dark);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.location-card h5 {
    color: var(--nt-white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.location-detail i {
    color: var(--nt-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.location-detail a {
    color: rgba(255, 255, 255, 0.9);
}

.location-detail a:hover {
    color: var(--nt-secondary);
}

/* Maps Container in Dark Section */
.maps-container {
    margin-top: 3rem;
}

.maps-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.maps-wrapper iframe {
    display: block;
    width: 100%;
}

/* Google Reviews Section */
.reviews-container {
    margin-top: 3rem;
}


.google-reviews-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.google-reviews-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nt-secondary);
    transform: translateY(-4px);
}

.google-reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.google-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.google-rating .stars {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
    font-size: 1.25rem;
}

.google-rating .rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.google-reviews-body {
    margin-bottom: 1.5rem;
}

.review-summary {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.review-summary i {
    color: var(--nt-secondary);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.google-reviews-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-link-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--nt-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition-fast);
    padding: 0;
    background: none;
    border: none;
}

.btn-link-light:hover {
    color: var(--nt-secondary-light);
    gap: 0.75rem;
}

/* ==========================================================================
   Contact & Social Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--nt-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
}

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

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nt-primary-light) 0%, var(--nt-primary) 100%);
    color: var(--nt-white);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card h6 {
    font-weight: 600;
    color: var(--nt-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card p,
.contact-card a {
    color: var(--nt-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-card a:hover {
    color: var(--nt-primary);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--nt-white);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-fast);
    text-decoration: none;
}

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

.social-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    font-size: 1.25rem;
}

.social-card-icon.facebook {
    background: #1877f2;
    color: var(--nt-white);
}

.social-card-icon.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    color: var(--nt-white);
}

.social-card-info h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nt-dark);
}

.social-card-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--nt-gray);
}

/* ==========================================================================
   Brand Message Section
   ========================================================================== */
.brand-message-section {
    background: linear-gradient(135deg, var(--nt-secondary) 0%, var(--nt-secondary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.brand-message-content {
    max-width: 800px;
    margin: 0 auto;
}

.brand-quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--nt-dark);
    color: var(--nt-secondary);
    border-radius: var(--radius-full);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.brand-message-content blockquote {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--nt-dark);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    border: none;
}

.brand-message-content cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 700;
    color: var(--nt-primary-dark);
    font-size: 1rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Scroll Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* AOS Fade Up Class */
.aos-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.aos-fade-up.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
    .training-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .about-hero {
        padding: 3rem 0 4rem;
    }

    .about-section {
        padding: 3.5rem 0;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

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

    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-section {
        padding: 4rem 0;
    }

    .team-row {
        margin-bottom: 4rem;
    }

    .team-row-header {
        margin-bottom: 2.5rem;
    }

    .team-row-title {
        font-size: 1.5rem;
    }

    .team-row-description {
        font-size: 0.95rem;
    }

    .management-section::before {
        height: 240px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .team-row-instructors::before,
    .team-row-officers::before {
        height: 240px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .management-photo-container {
        height: 280px;
    }

    .management-grid {
        gap: 2rem;
    }

    .business-list {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

    /* Visi Misi - Tablet */
    .vm-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-card {
        padding: 2rem;
    }

    /* Team Section - Tablet */
    .about-section-team {
        min-height: 500px;
    }

    .team-bg-image {
        width: 50%;
    }

    .team-bg-overlay {
        background: 
            linear-gradient(to right, 
                transparent 0%, 
                transparent 20%,
                rgba(251, 198, 106, 0.4) 35%,
                rgba(251, 198, 106, 0.8) 50%,
                rgba(251, 198, 106, 1) 60%,
                rgba(251, 198, 106, 1) 100%
            ),
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.05) 0%,
                transparent 30%,
                transparent 70%,
                rgba(0, 0, 0, 0.05) 100%
            );
    }

    .team-content-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-row {
        margin-bottom: 3.5rem;
    }

    .team-row-header {
        margin-bottom: 2rem;
    }

    .team-row-title {
        font-size: 1.35rem;
    }

    .team-row-description {
        font-size: 0.9rem;
    }

    /* Hide global stripe on mobile */
    .management-section::before {
        display: none;
    }

    .team-row-instructors::before,
    .team-row-officers::before {
        display: none;
    }

    .management-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 350px;
        margin: 0 auto;
    }

    .management-photo-container {
        height: 260px;
    }

    /* Individual background for each photo on mobile */
    .management-photo-bg {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 140px;
        z-index: 0;
    }

    .management-name {
        font-size: 1.05rem;
    }

    .management-position {
        font-size: 0.9rem;
    }
    .about-hero {
        padding: 2.5rem 0 3rem;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    /* Team Section - Mobile */
    .about-section-team {
        min-height: auto;
        padding-top: 280px;
    }

    .team-bg-image {
        width: 100%;
        height: 300px;
        top: 0;
        left: 0;
    }

    .team-bg-overlay {
        background: 
            linear-gradient(to bottom, 
                transparent 0%, 
                transparent 40%,
                rgba(251, 198, 106, 0.6) 60%,
                rgba(251, 198, 106, 0.95) 80%,
                rgba(251, 198, 106, 1) 100%
            ),
            linear-gradient(to right,
                rgba(0, 0, 0, 0.03) 0%,
                transparent 50%,
                rgba(0, 0, 0, 0.03) 100%
            );
    }

    .team-content-wrapper {
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.95);
    }

    .team-content .lead {
        font-size: 1.05rem;
    }

    .team-highlight-item {
        padding: 0.875rem;
    }

    .team-highlight-item span {
        font-size: 0.9rem;
    }

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

    .core-services-grid,
    .core-services-grid-bottom {
        grid-template-columns: 1fr;
    }

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

    .training-list {
        grid-template-columns: 1fr;
    }

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

    .social-grid {
        flex-direction: column;
        align-items: center;
    }

    .sector-tags {
        flex-direction: column;
        align-items: center;
    }

    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem 0.75rem;
    }

    .stat-box .stat-number {
        font-size: 1.5rem;
    }

    .brand-message-section {
        padding: 3rem 0;
    }

    .brand-quote-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* Visi Misi - Mobile */
    .vm-card {
        padding: 1.5rem;
    }

    .vm-card h4 {
        font-size: 1.25rem;
    }

    .vm-card-body blockquote {
        font-size: 1rem;
    }

    .misi-item {
        padding: 0.875rem;
    }

    .misi-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .misi-item p {
        font-size: 0.9rem;
    }

    /* Google Reviews - Mobile */
    .reviews-container {
        margin-top: 2rem;
    }

    .google-reviews-card {
        padding: 1.5rem;
    }

    .google-reviews-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .google-reviews-body {
        margin-bottom: 1.25rem;
    }

    .review-summary {
        font-size: 0.95rem;
    }

    .maps-wrapper iframe {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    /* Team Section - Small Mobile */
    .about-section-team {
        padding-top: 220px;
    }

    .team-bg-image {
        height: 250px;
    }

    .team-content-wrapper {
        padding: 1.25rem;
    }

    .team-content .lead {
        font-size: 1rem;
    }

    .team-highlight-item {
        padding: 0.75rem;
    }

    /* Management Section - Small Mobile */
    .team-section {
        padding: 3rem 0;
    }

    .team-row {
        margin-bottom: 3rem;
    }

    .team-row-header {
        margin-bottom: 1.75rem;
    }

    .team-row-title {
        font-size: 1.25rem;
    }

    .team-row-description {
        font-size: 0.85rem;
    }

    /* Hide global stripe on small mobile */
    .management-section::before {
        display: none;
    }

    .team-row-instructors::before,
    .team-row-officers::before {
        display: none;
    }

    .management-grid {
        max-width: 100%;
        gap: 2rem;
    }

    .management-photo-container {
        height: 240px;
    }

    /* Individual background for each photo on small mobile */
    .management-photo-bg {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 120px;
        z-index: 0;
    }

    .management-name {
        font-size: 1rem;
    }

    .management-position {
        font-size: 0.85rem;
    }

    .team-highlight-item i {
        font-size: 1.1rem;
    }

    .team-highlight-item span {
        font-size: 0.85rem;
    }

    /* Google Reviews - Small Mobile */
    .reviews-container {
        margin-top: 1.5rem;
    }

    .google-reviews-card {
        padding: 1.25rem;
    }

    .google-reviews-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        gap: 0.75rem;
    }

    .google-logo {
        height: 20px;
    }

    .google-rating .stars {
        font-size: 1.1rem;
    }

    .google-rating .rating-text {
        font-size: 0.85rem;
    }

    .google-reviews-body {
        margin-bottom: 1rem;
    }

    .review-summary {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .review-summary i {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .google-reviews-footer {
        padding-top: 0.75rem;
    }

    .btn-link-light {
        font-size: 0.85rem;
    }

    /* Visi Misi - Small Mobile */
    .vm-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .vm-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .misi-number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .maps-wrapper iframe {
        height: 250px;
    }

    .about-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .section-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .vm-card,
    .cert-card,
    .legal-card,
    .business-model-content {
        padding: 1.5rem;
    }

    .portfolio-highlight {
        padding: 1.5rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .training-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Achievements Section (Sertifikasi & Penghargaan)
   ========================================================================== */
.about-section-achievements {
    position: relative;
    background: linear-gradient(180deg, var(--nt-primary-dark) 0%, var(--nt-primary) 50%, var(--nt-primary-dark) 100%);
    padding: 5rem 0;
    overflow: hidden;
    color: var(--nt-white);
}

/* Glory Background Effects */
.achievements-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Radial Sunburst Effect */
.glory-sunburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(251, 182, 61, 0.2) 0%,
            rgba(251, 182, 61, 0.1) 25%,
            rgba(251, 182, 61, 0.03) 50%,
            transparent 70%
        ),
        conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(251, 182, 61, 0.06) 30deg,
            transparent 60deg,
            rgba(251, 182, 61, 0.04) 90deg,
            transparent 120deg,
            rgba(251, 182, 61, 0.06) 150deg,
            transparent 180deg,
            rgba(251, 182, 61, 0.04) 210deg,
            transparent 240deg,
            rgba(251, 182, 61, 0.06) 270deg,
            transparent 300deg,
            rgba(251, 182, 61, 0.04) 330deg,
            transparent 360deg
        );
    animation: rotateSunburst 90s linear infinite;
}

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

/* Sparkle Stars */
.glory-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--nt-secondary);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(251, 182, 61, 0.5);
    animation: sparkleFloat 5s ease-in-out infinite;
}

.sparkle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 15%; left: 85%; animation-delay: 0.6s; }
.sparkle-3 { top: 30%; left: 5%; animation-delay: 1.2s; }
.sparkle-4 { top: 25%; left: 95%; animation-delay: 1.8s; }
.sparkle-5 { top: 70%; left: 8%; animation-delay: 2.4s; }
.sparkle-6 { top: 75%; left: 92%; animation-delay: 3s; }
.sparkle-7 { top: 85%; left: 15%; animation-delay: 3.6s; }
.sparkle-8 { top: 80%; left: 88%; animation-delay: 4.2s; }

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1) translateY(0);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.3) translateY(-8px);
    }
}

/* Section Header */
.achievements-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
}

.achievements-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nt-secondary);
    color: var(--nt-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievements-badge i {
    font-size: 1rem;
}

.achievements-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--nt-white);
    margin-bottom: 0.75rem;
}

.achievements-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Achievements Group */
.achievements-group {
    position: relative;
    z-index: 2;
}

.achievements-group-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.achievements-group-icon {
    width: 44px;
    height: 44px;
    background: var(--nt-secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nt-dark);
    font-size: 1.25rem;
}

.achievements-group-icon-award {
    background: linear-gradient(135deg, #ffd700 0%, var(--nt-secondary) 100%);
}

.achievements-group-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nt-white);
    margin: 0;
}

/* Achievement Card - Same style as Location Card */
.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
    animation: fadeInUp 0.6s ease-out backwards;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nt-secondary);
    transform: translateY(-6px);
}

/* Remove the glow and inner elements - simplify structure */
.achievement-card-glow,
.achievement-card-glow-gold {
    display: none;
}

.achievement-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Achievement Logo Area */
.achievement-logo-area {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.achievement-logo-bg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-logo {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.achievement-card:hover .achievement-logo {
    transform: scale(1.03);
}

/* Clickable image indicator */
.achievement-image-zoom {
    cursor: pointer;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.achievement-image-zoom:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.achievement-logo-area:hover .achievement-image-zoom,
.trophy-showcase:hover .achievement-image-zoom,
.certificate-showcase:hover .achievement-image-zoom {
    transform: scale(1.05);
}

/* Trophy Showcase */
.trophy-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-height: 160px;
}

.trophy-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(251, 182, 61, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.trophy-img {
    position: relative;
    z-index: 2;
    max-height: 180px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-base);
}

.achievement-card:hover .trophy-img {
    transform: scale(1.05);
}

/* Certificate Showcase */
.certificate-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.95); */
    /* border-radius: var(--radius-lg); */
    padding: 1.5rem;
    min-height: 160px;
}

.certificate-img {
    max-height: 160px;
    border-radius: var(--radius-sm);
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
    transition: transform var(--transition-base);
}

.achievement-card:hover .certificate-img {
    transform: scale(1.03);
}

/* Achievement Info */
.achievement-info {
    flex: 1;
    text-align: left;
}

.achievement-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nt-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.achievement-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-section-achievements {
        padding: 4rem 0;
    }

    .achievements-header {
        margin-bottom: 2.5rem;
    }

    .achievement-card {
        padding: 1.75rem;
    }

    .achievement-logo-area,
    .trophy-showcase,
    .certificate-showcase {
        min-height: 140px;
        padding: 1.25rem;
    }

    .achievement-logo {
        max-height: 120px;
    }

    .trophy-img {
        max-height: 150px;
    }

    .certificate-img {
        max-height: 130px;
    }
}

@media (max-width: 767.98px) {
    .about-section-achievements {
        padding: 3rem 0;
    }

    .achievements-title {
        font-size: 1.5rem;
    }

    .achievements-subtitle {
        font-size: 0.95rem;
    }

    .achievements-group-title {
        font-size: 1.25rem;
    }

    .achievements-group-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .achievement-card {
        padding: 1.5rem;
    }

    .achievement-name {
        font-size: 1rem;
    }

    .achievement-desc {
        font-size: 0.85rem;
    }

    .achievement-logo-area,
    .trophy-showcase,
    .certificate-showcase {
        min-height: 120px;
        padding: 1rem;
    }

    .achievement-logo {
        max-height: 100px;
    }

    .trophy-glow {
        width: 120px;
        height: 120px;
    }

    .trophy-img {
        max-height: 130px;
    }

    .certificate-img {
        max-height: 110px;
    }

    .sparkle {
        width: 2px;
        height: 2px;
    }
}

/* ==========================================================================
   Achievement Image Lightbox
   ========================================================================== */
.achievement-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.achievement-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-container {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.8);
    transition: transform var(--transition-slow);
}

.achievement-lightbox.active .lightbox-container {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--nt-white);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 2;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--nt-secondary);
    color: var(--nt-secondary);
    transform: rotate(90deg);
}

.lightbox-content {
    background: var(--nt-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lightbox-caption {
    color: var(--nt-dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding-top: 0.5rem;
    border-top: 1px solid var(--nt-gray-light);
    width: 100%;
}

/* Responsive Lightbox */
@media (max-width: 767.98px) {
    .lightbox-container {
        max-width: 95%;
        padding: 1rem;
    }

    .lightbox-content {
        padding: 1.5rem;
    }

    .lightbox-image {
        max-height: 60vh;
    }

    .lightbox-caption {
        font-size: 0.9rem;
    }

    .lightbox-close {
        top: -40px;
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .lightbox-container {
        max-width: 98%;
        padding: 0.5rem;
    }

    .lightbox-content {
        padding: 1rem;
    }

    .lightbox-image {
        max-height: 50vh;
    }

    .lightbox-caption {
        font-size: 0.85rem;
    }

    .lightbox-close {
        top: -35px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

