/* Profile Page Specific Styles */

/* Page Header (Copied from Informasi) */
.page-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-color: var(--midnight-blue);
  color: white;
  text-align: center;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-desc {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Profile Thumbnail & Description */
.profile-section {
  padding: 8rem 0 4rem; /* Top padding to account for fixed navbar if needed, or just standard spacing */
  background-color: var(--white);
}

.profile-header {
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: center;
}

.profile-thumbnail-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.profile-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-thumbnail-wrapper:hover .profile-thumbnail {
  transform: scale(1.05);
}

.profile-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: justify;
}

.profile-description p {
  margin-bottom: 1.5rem;
}

/* Profile Specific - Layanan Section */
.profile-services {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.p-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.p-service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.p-service-card:hover {
  border-color: var(--royal-blue);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  transform: translateY(-5px);
}

.p-service-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  color: var(--royal-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.p-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--midnight-blue);
}

/* Profile Specific - Informasi Section */
.profile-info {
  padding: 5rem 0;
  background-color: var(--white);
}

.p-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-info-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  align-items: center;
  transition: background 0.3s;
}

.p-info-item:hover {
  background: var(--light-blue);
}

.p-info-date {
  font-weight: 600;
  color: var(--royal-blue);
  min-width: 80px;
  text-align: center;
}

.p-info-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--prussian-blue);
}

.p-info-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}
