/* ===== PREMIUM PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 30%, #003D29 60%, #0A0E27 100%);
    padding: 100px 0 50px;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 168, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 199, 44, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 168, 89, 0.03) 2px, rgba(0, 168, 89, 0.03) 4px);
    pointer-events: none;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 168, 89, 0.2);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 168, 89, 0.3);
}

.card-number {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.card-label {
    font-size: 16px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Mission & Vision */
.mission-vision {
    padding: 60px 0;
    background: #F5F7FA;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 168, 89, 0.1);
    border: 1px solid rgba(0, 168, 89, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.15);
    border-color: rgba(0, 168, 89, 0.2);
}

.mv-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 60px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: #F5F7FA;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.value-item:hover {
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.2);
    border-color: transparent;
}

.value-item:hover .value-icon {
    transform: scale(1.15) rotate(5deg);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.7;
}

.value-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 32px 24px;
    background: #F5F7FA;
    border-radius: 20px;
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 168, 89, 0.15);
    border-top-color: #00A859;
    background: white;
}

.member-avatar {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    position: relative;
    background: white;
    border-radius: 50%;
    padding: 8px;
    border: 3px solid #00A859;
    box-shadow: 0 4px 20px rgba(0, 168, 89, 0.15);
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    border-color: #FFC72C;
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 199, 44, 0.3);
}

.member-avatar svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.member-badge {
    position: absolute;
    bottom: -5px;
    right: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    color: white;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 168, 89, 0.3);
}

.team-member h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.member-role {
    font-size: 15px;
    font-weight: 600;
    color: #00A859;
    margin-bottom: 12px;
}

.member-description {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Indonesian Financial Info Section */
.financial-info-section {
    padding: 60px 0;
    background: #F5F7FA;
}

.financial-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.financial-visual {
    position: relative;
}

.rupiah-card {
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 168, 89, 0.2);
    text-align: center;
    color: white;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.rupiah-card:hover {
    transform: rotate(0deg) scale(1.03);
}

.rupiah-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.flag-icon {
    font-size: 42px;
}

.rupiah-header h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.rupiah-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.rupiah-symbol-large {
    font-size: 64px;
    font-weight: 800;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.amount-text {
    font-size: 16px;
    opacity: 0.9;
}

.rupiah-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.rupiah-feature {
    font-size: 15px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.financial-text .section-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.financial-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.financial-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.fin-icon-item {
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 168, 89, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.fin-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.15);
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    color: white;
    border-color: transparent;
}

.fin-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
}

.fin-icon-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.fin-icon-item:hover span {
    color: white;
}

/* Address Section */
.address-section {
    padding: 60px 0;
    background: #F5F7FA;
}

.address-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.address-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.address-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.address-details p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
}

.address-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Services Page */
.services-page {
    padding: 60px 0;
    background: white;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.services-intro-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--premium-text);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.services-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--premium-text-light);
}

.services-list {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
    background: #F5F7FA;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-item:nth-child(even) .service-image {
    order: 2;
}

.service-item:nth-child(even) .service-details {
    order: 1;
}

.service-item:hover {
    background: white;
    box-shadow: 0 15px 50px rgba(0, 168, 89, 0.15);
    transform: translateY(-5px);
    border-color: rgba(0, 168, 89, 0.2);
}

.service-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.2);
}

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.service-details p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 28px;
    font-size: 14px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00A859;
    font-weight: bold;
    font-size: 16px;
}

.service-details .btn {
    margin-top: 8px;
}

/* FAQ Page */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 168, 89, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.faq-item.active {
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.15);
    border-color: rgba(0, 168, 89, 0.2);
}

.faq-question {
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #00A859;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #00A859;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 28px;
    background: #F5F7FA;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.contact-card:hover {
    background: linear-gradient(135deg, #00A859 0%, #00C853 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 168, 89, 0.2);
    border-color: transparent;
}

.contact-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-form {
    background: #F5F7FA;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 89, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(0, 168, 89, 0.1);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00A859;
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Careers Page */
.careers-section {
    padding: 60px 0;
    background: white;
}

.jobs-list {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.job-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 168, 89, 0.1);
    border-left: 4px solid #00A859;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 168, 89, 0.1);
    border-left: 4px solid #00A859;
}

.job-card:hover {
    box-shadow: 0 15px 50px rgba(0, 168, 89, 0.15);
    transform: translateX(8px);
    border-color: rgba(0, 168, 89, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.job-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 168, 89, 0.1);
    color: #00A859;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.job-details {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 14px;
}

.job-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Privacy Page */
.privacy-section {
    padding: 60px 0;
    background: white;
}

.privacy-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.privacy-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.privacy-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.privacy-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .financial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .financial-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-grid,
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-image,
    .service-item:nth-child(even) .service-details {
        order: 0;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .financial-icons {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-avatar {
        width: 110px;
        height: 110px;
    }
    
    .rupiah-card {
        transform: rotate(0deg);
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-item {
        padding: 32px;
    }
}
