/* ============================================
   LIBERTA - Inner Pages Styles
   ============================================ */

/* Page Banner */
.page-banner {
  position: relative;
  padding: 80px 0 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 60%);
  z-index: 1;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner .banner-title {
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.page-banner .banner-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb-custom {
  /*display: flex;
  align-items: center;
  gap: 10px;*/
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: var(--text-muted);
}

.breadcrumb-custom a:hover {
  color: var(--gold);
}

.breadcrumb-custom .separator {
  color: var(--gold);
}

.breadcrumb-custom .current {
  color: var(--gold);
}

/* Decorative Lines */
.page-banner .decor-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* Content Section */
.page-content {
  padding: 80px 0;
}

/* About Page - Intro */
.about-intro .intro-image {
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.about-intro .intro-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro .intro-content p {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Mission Vision */
.mission-vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.mission-vision-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.mission-vision-card .mv-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.5rem;
}

.mission-vision-card h4 {
  margin-bottom: 15px;
}

.mission-vision-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* Why Choose Us */
.why-choose-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
}

.why-choose-item:hover {
  border-color: var(--border-gold);
}

.why-choose-item .wc-icon {
  min-width: 55px;
  height: 55px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.why-choose-item h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.why-choose-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Team Page */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.team-card .team-image {
  position: relative;
  /*height: 280px;*/
  overflow: hidden;
}

.team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.team-card .team-info {
  padding: 25px;
  text-align: center;
}

.team-card .team-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.team-card .team-info .designation {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.team-card .team-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Expertise/Service Page */
.expertise-detail, .service-detail {
  padding: 80px 0;
}

.detail-icon-large {
  width: 90px;
  height: 90px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--gold);
  font-size: 2.2rem;
}

.benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--border-gold);
}

.benefit-item .benefit-icon {
  min-width: 45px;
  height: 45px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.benefit-item h6 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.benefit-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Process Steps */
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.process-step .step-num {
  min-width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.process-step h6 {
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Contact Page */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 35px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.contact-info-card .contact-icon {
  width: 65px;
  height: 65px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 1.5rem;
}

.contact-info-card h5 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 50px;
}

.contact-form-wrapper h3 {
  margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}
