/* ===================================
   FASILITAS PAGE SPECIFIC STYLES
   =================================== */

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

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* INTRO TEXT */
.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* FACILITY GRID */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.facility-card {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.facility-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-card h3 {
    font-size: 22px;
    color: #2D7A6E;
    margin: 25px 25px 15px;
}

.facility-info {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 25px 15px;
    flex-grow: 1;
}

.facility-info strong {
    color: #333;
    display: block;
    margin-top: 12px;
    margin-bottom: 5px;
}

.btn-detail {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #2D7A6E;
    color: #2D7A6E;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s;
    margin: 10px 25px 25px;
}

.btn-detail:hover {
    background: #2D7A6E;
    color: white;
}

/* UTILITIES GRID */
.utilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.utility-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.utility-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.utility-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2D7A6E 0%, #1a5a50 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.utility-content h3 {
    color: #2D7A6E;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.utility-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.utility-content strong {
    color: #333;
    font-weight: 600;
}

/* STATS GRID */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 45px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.stat-number {
    font-size: 52px;
    font-weight: bold;
    color: #D68A3D;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

/* RULES HIGHLIGHT */
.rules-highlight {
    background: linear-gradient(135deg, #2D7A6E 0%, #1a5a50 100%);
    padding: 50px;
    border-radius: 15px;
    color: white;
    margin-top: 50px;
}

.rules-highlight h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s;
}

.rule-item:hover {
    background: rgba(255,255,255,0.15);
}

.rule-item::before {
    content: "✓";
    font-size: 22px;
    font-weight: bold;
    flex-shrink: 0;
    color: #D68A3D;
}

/* 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: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    font-size: 36px;
    font-weight: bold;
    margin: 35px 0;
    color: #D68A3D;
    letter-spacing: 1px;
}

/* RESPONSIVE DESIGN */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 42px;
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

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

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
    }

    .intro-text {
        font-size: 16px;
    }

    .facility-grid,
    .utilities-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facility-card h3 {
        font-size: 20px;
    }

    .utility-item {
        padding: 25px;
    }

    .utility-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-card {
        padding: 35px 20px;
    }

    .rules-highlight {
        padding: 35px 25px;
    }

    .rules-highlight h3 {
        font-size: 22px;
    }

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

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-phone {
        font-size: 28px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }

    .facility-image {
        height: 200px;
    }

    .utility-item {
        flex-direction: column;
        text-align: center;
    }

    .utility-icon {
        margin: 0 auto;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-phone {
        font-size: 24px;
    }
}