/* ============================================
   INFORMASI PENGHUNI PAGE STYLES
   ============================================ */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #2D7A6E 0%, #1a5a50 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Introduction Text */
.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.info-card h3 {
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.info-card ul {
    margin-top: 15px;
}

.info-card li {
    color: var(--text-medium);
    margin-bottom: 8px;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.info-table th,
.info-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.info-table th {
    background: var(--primary-green);
    color: white;
    font-weight: 600;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover {
    background: #f5f5f5;
}

.info-table td {
    color: var(--text-medium);
}

/* Info Lists */
.info-list {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.info-list ul {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-medium);
    position: relative;
    padding-left: 35px;
}

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

.info-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left: 5px solid var(--primary-orange);
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
}

.highlight-box h4 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.highlight-box p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.highlight-box ul {
    margin-top: 10px;
}

.highlight-box li {
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 5px solid #d32f2f;
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #d32f2f;
    margin-bottom: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.warning-box p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.warning-box ul {
    margin-top: 10px;
}

.warning-box li {
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.contact-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2D7A6E 0%, #1a5a50 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-phone {
    font-size: 36px;
    font-weight: 600;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    height: 300px;
}

.section-image {
    height: 250px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 38px;
    }
    
    .cta-section h2 {
        font-size: 36px;
    }
    
    .cta-phone {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 50px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 20px;
    }
    
    .info-table th,
    .info-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item .icon {
        font-size: 32px;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-phone {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }
    
    .highlight-box,
    .warning-box {
        padding: 20px;
    }
    
    .highlight-box h4,
    .warning-box h4 {
        font-size: 18px;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .section-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .info-table {
        font-size: 13px;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px 8px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .cta-phone {
        font-size: 20px;
    }
}