/* ============================
   PMC – CLEAN ISOLATED CSS
   ============================ */

* {
  box-sizing: border-box;
}

body.pmc {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

/* ---------- UTIL ---------- */
.pmc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  margin: 0 0 15px;
  font-weight: 700;
}

p {
  line-height: 1.6;
  margin: 0 0 15px;
}

.btn {
  display: inline-block;
  padding: 10px 18px;
  background: #0d5a87;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.btn:hover {
  background: #094768;
}

/* ---------- HEADER ---------- */
.pmc-header {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.pmc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.pmc-logo {
  font-size: 20px;
  font-weight: 700;
  color: #0d5a87;
  text-decoration: none;
}

.pmc-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #374151;
  font-weight: 600;
}

.pmc-nav a.active {
  color: #0d5a87;
}

.pmc-nav .btn {
  margin-left: 30px;
}

/* ---------- HERO ---------- */
.pmc-hero {
  background: #0d5a87;
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.pmc-hero h1 {
  font-size: 36px;
}

.pmc-hero p {
  font-size: 18px;
  margin-bottom: 10px;
}

.pmc-tags {
  font-size: 14px;
  opacity: 0.9;
}

/* ---------- SECTIONS ---------- */
.pmc-section {
  padding: 60px 0;
}

.pmc-light {
  background: #f8fafc;
}

/* ---------- GRID ---------- */
.pmc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.pmc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 6px;
  font-weight: 600;
}

/* ---------- FILTERS ---------- */
.pmc-filters {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.pmc-filters select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  min-width: 160px;
}

/* ---------- TABLE ---------- */
.pmc-table-wrap {
  overflow-x: auto;
}

.pmc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.pmc-table th,
.pmc-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.pmc-table th {
  background: #f3f4f6;
  font-weight: 700;
}

/* ---------- CTA ---------- */
.pmc-cta {
  background: #0d5a87;
  color: #ffffff;
  text-align: center;
  padding: 60px 0;
}

.pmc-cta h2 {
  margin-bottom: 20px;
}

/* ---------- FOOTER ---------- */
.pmc-footer {
  background: #111827;
  color: #d1d5db;
  padding: 50px 0 20px;
}

.pmc-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.pmc-footer h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.pmc-copy {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  color: #9ca3af;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .pmc-header-row {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }

  .pmc-nav {
    margin-top: 10px;
  }

  .pmc-nav a {
    margin: 0 10px;
  }

  .pmc-hero h1 {
    font-size: 28px;
  }
}
/
/* ================= CONTACT SECTION ================= */

.contact-section-modern {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.contact-card {
  max-width: 820px;
  margin: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 48px 42px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
}

/* HEADER */
.contact-header {
  text-align: center;
  margin-bottom: 36px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-header p {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
  margin: auto;
}

/* FORM LAYOUT */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  transition: all 0.2s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

/* PRICE BOX */
.price-box {
  margin-top: 8px;
  padding: 16px 18px;
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 16px;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

#priceAmount {
  font-size: 18px;
  color: #0f172a;
}

/* PRIMARY BUTTON */
.btn-primary {
  margin-top: 10px;
  padding: 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .contact-card {
    padding: 36px 24px;
  }

  .contact-header h2 {
    font-size: 26px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.deliverables-list {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0f172a;
}

.deliverables-list li {
  margin-bottom: 6px;
}

.delivery-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

.trust-badge{
padding:14px 18px;
background:white;
border:1px solid #e5e7eb;
border-radius:8px;
font-weight:600;
text-align:center;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
transition:all 0.2s ease;
}

.trust-badge:hover{
transform:translateY(-3px);
box-shadow:0 6px 14px rgba(0,0,0,0.08);
}
/* ================= CTA BOX ================= */

/* ================= CTA BOX ================= */

.pmc-cta-box{
background:linear-gradient(135deg,#0f172a,#1e40af);
color:white;
padding:50px 40px;
border-radius:10px;
text-align:center;
max-width:900px;
margin:50px auto;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* Heading */

.pmc-cta-box h2{
font-size:28px;
font-weight:700;
margin-bottom:15px;
}

/* Paragraph */

.pmc-cta-box p{
font-size:16px;
line-height:1.6;
opacity:0.95;
margin-bottom:25px;
}

/* Button */

.btn-primary{
display:inline-block;
background:#f59e0b;
color:#111827;
padding:14px 28px;
font-size:15px;
font-weight:600;
border-radius:6px;
text-decoration:none;
transition:all 0.25s ease;
}

.btn-primary:hover{
background:#fbbf24;
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,0,0,0.25);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.pmc-cta-box{
padding:35px 25px;
}

.pmc-cta-box h2{
font-size:22px;
}

.pmc-cta-box p{
font-size:15px;
}

.btn-primary{
padding:12px 22px;
font-size:14px;
}

}