/* =========================================
   Pricing Page Exclusive CSS
   ========================================= */

/* Section Titles */
.pg-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 50px;
}
.pg-title h2 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.pg-title p {
  font-size: 1.125rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
.pg-title p.pg-note {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
}

.pg-divider {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 60px 0;
}

/* Grids */
.pg-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.pg-grid-retainer {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.pg-grid-logo {
  grid-template-columns: 1fr;
  max-width: 450px;
  margin: 0 auto;
}
.pg-grid-quick {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.pg-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Card Variations */
.pg-card-retainer {
  justify-content: space-between;
  padding: 40px 30px;
}
.pg-card-logo {
  padding: 40px;
  align-items: center;
}
.pg-card-quick {
  justify-content: space-between;
  padding: 30px;
}

/* Premium Card (Retainer) */
.pg-card.pg-premium {
  border: 2px solid var(--accent-color);
  box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15);
  transform: translateY(-10px);
}
.pg-card.pg-premium:hover {
  transform: translateY(-15px);
}
.pg-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card Typography */
.pg-card h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
}
.pg-card-retainer h3 { margin-bottom: 0; }
.pg-card-logo h3 { margin-bottom: 10px; }
.pg-card-quick h3 { margin-bottom: 15px; }

.pg-desc {
  color: #666; /* Fixed color from invisible white to dark grey */
  font-size: 0.95rem;
}
.pg-card-retainer .pg-desc { margin-top: 10px; }

.pg-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}
.pg-card-retainer .pg-price { margin: 15px 0; }
.pg-card-logo .pg-price { font-size: 2.2rem; margin: 20px 0; }
.pg-card-quick .pg-price { margin-bottom: 15px; font-size: 2rem; }

.pg-price .pg-mo {
  font-size: 1rem;
  color: #888;
  font-weight: normal;
}

/* Card Buttons */
.pg-card-retainer .btn { margin-top: 20px; }
.pg-card-logo .btn { width: 100%; max-width: 250px; }
.pg-card-quick .btn { font-size: 0.9rem; padding: 10px 20px; }

/* Custom CTA Section */
.pg-cta-section {
  background-color: #f4f6f8;
  text-align: center;
  border-top: 1px solid #eaeaea;
}
.pg-cta-section h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 2.5rem);
}
.pg-cta-section .cta-desc {
  color: #666;
  margin-bottom: 35px;
  font-size: 1.15rem;
}
.pg-cta-btn-wrapper {
  display: flex;
  justify-content: center;
}
.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}
.whatsapp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  color: #fff;
}
.whatsapp-cta-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}
