/* === PREMIUM LISTING SHARED STYLES === */

.pl-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a56db 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.pl-logo {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.pl-logo img { width: 100%; height: 100%; object-fit: cover; }
.pl-hero h1 { font-family: 'Merriweather', serif; font-size: 2.25rem; margin-bottom: 0.5rem; }
.pl-tagline { opacity: 0.85; font-size: 1.05rem; max-width: 580px; margin: 0 auto 1.5rem; }
.pl-meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  opacity: 0.9;
}
.pl-meta span { display: flex; align-items: center; gap: 0.4rem; }
.pl-badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pl-body { padding: 3rem 0 4rem; }
.pl-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1a56db;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.pl-back:hover { text-decoration: underline; }

.pl-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* Main column */
.pl-section { margin-bottom: 2.5rem; }
.pl-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
}
.pl-section p { color: #475569; line-height: 1.75; font-size: 0.975rem; }

.pl-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.pl-service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pl-service-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.pl-service-card .svc-icon { font-size: 1.9rem; margin-bottom: 0.6rem; }
.pl-service-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; color: #1e3a5f; font-weight: 600; }
.pl-service-card p { font-size: 0.85rem; color: #64748b; line-height: 1.5; }

/* Sidebar */
.pl-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 1.25rem; }

.pl-contact-card {
  background: #fff;
  border: 2px solid #1a56db;
  border-radius: 16px;
  padding: 1.75rem;
}
.pl-contact-card h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  color: #1e3a5f;
  margin-bottom: 1.25rem;
}
.ci-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.ci-item:last-child { margin-bottom: 0; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.ci-label { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 0.15rem; }
.ci-value { font-size: 0.95rem; color: #1e293b; font-weight: 500; }
.ci-value a { color: #1a56db; text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }

.pl-social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}
.pl-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pl-social a:hover { background: #1a56db; color: #fff; }

.pl-cta-card {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.pl-cta-card p { font-size: 0.9rem; color: #475569; margin-bottom: 1rem; line-height: 1.5; }
.pl-cta-card .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .pl-layout { grid-template-columns: 1fr; }
  .pl-sidebar { position: static; }
}
@media (max-width: 600px) {
  .pl-hero h1 { font-size: 1.75rem; }
  .pl-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .pl-services-grid { grid-template-columns: 1fr; }
}
