/* ==========================================
   PRICING PAGE BASE STYLES
   ========================================== */
.pricing-page-content {
  min-height: 450px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.breadcrumbs-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5; /* Light blue color for Home link matching screenshot */
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A; /* Purple slash color matching screenshot */
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A; /* Purple color for active page matching screenshot */
  font-weight: 600;
  pointer-events: none;
}

/* ==========================================
   PRICING HERO SECTION
   ========================================== */
.pricing-hero-section {
  background-color: #D26E60; /* Coral/terracotta color matching screenshot */
  padding: 95px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #FFFFFF;
}

.pricing-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-badge-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.pricing-badge {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-family: 'Kalam', cursive;
  font-size: 14.5px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  color: #FFD700; /* Gold bolt */
  font-size: 14px;
}

.pricing-hero-title {
  font-family: 'Kalam', cursive;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.35;
}

.pricing-hero-description {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 950px;
  margin: 0 auto 36px auto;
}

.pricing-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-btn {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-white {
  background-color: #FFFFFF;
  color: #D26E60; /* Muted coral */
  border: 1.5px solid #FFFFFF;
}

.btn-white:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background-color: #FFFFFF;
  color: #D26E60;
  border-color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .breadcrumbs-section {
    padding: 16px 16px;
  }

  .breadcrumbs {
    font-size: 13.5px;
    gap: 6px;
  }

  .pricing-hero-section {
    padding: 60px 16px;
  }

  .pricing-hero-title {
    font-size: 30px;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .pricing-hero-description {
    font-size: 14.5px;
    margin-bottom: 28px;
  }

  .pricing-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==========================================
   PRICING DETAILS SECTION
   ========================================== */
.pricing-details-section {
  background-color: #F9FAFB; /* soft lilac/grey backdrop */
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
}

.pricing-details-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 1.5px solid rgba(122, 79, 122, 0.1); /* very thin border */
  border-radius: 8px;
  padding: 45px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
  box-sizing: border-box;
  text-align: left;
}

.pricing-card-title {
  font-family: 'Kalam', cursive;
  font-size: 25px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 20px 0;
  line-height: 1.25;
}

.pricing-card-text {
  font-family: 'Kalam', cursive;
  font-size: 15px;
  color: #556070;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.pricing-card-text:last-of-type {
  margin-bottom: 0;
}

.pricing-card-text.footer-text {
  margin-top: 24px;
  margin-bottom: 0;
}

.pricing-card-text.bottom-spacing-20 {
  margin-bottom: 20px;
}

/* Inner Subcards inside Card 1 */
.pricing-subcards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.pricing-subcard {
  background-color: #FAF9FB; /* soft light background */
  border-radius: 6px;
  padding: 24px;
  box-sizing: border-box;
  text-align: left;
}

.pricing-subcard-title {
  font-family: 'Kalam', cursive;
  font-size: 17px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 12px 0;
}

.pricing-subcard-text {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #556070;
  line-height: 1.6;
  margin: 0;
}

.pricing-bullet-list {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #556070;
  line-height: 1.6;
  margin: 12px 0 0 0;
  padding-left: 20px;
  list-style-type: square; /* square bullets matching image */
}

.pricing-bullet-list li {
  margin-bottom: 8px;
}

.pricing-bullet-list li:last-child {
  margin-bottom: 0;
}

/* Options Grid inside Card 3 */
.pricing-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0;
}

.pricing-option-box {
  background-color: #FAF9FB;
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  box-sizing: border-box;
}

.pricing-option-title {
  font-family: 'Kalam', cursive;
  font-size: 20px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 16px 0;
}

.pricing-option-price {
  font-family: 'Kalam', cursive;
  font-size: 40px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 16px 0;
  line-height: 1;
}

.pricing-option-info {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #556070;
  line-height: 1.5;
  margin: 0;
}

.pricing-option-info span {
  font-size: 13px;
  color: #556070;
}

/* Cloud Infrastructure Box inside Card 3 */
.infrastructure-box {
  background-color: #FAF9FB;
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
  box-sizing: border-box;
  text-align: left;
}

.infrastructure-box-title {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.infrastructure-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.infrastructure-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-icon {
  color: #4ECDC4; /* Light teal checkmark matching image */
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.infrastructure-item span {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .pricing-options-grid,
  .infrastructure-grid {
    grid-template-columns: 1fr;
  }
  
  .infrastructure-col {
    gap: 16px;
  }
}

/* Core Apps Grid inside Card 4 */
.core-apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.core-app-box {
  background-color: #FAF9FB;
  border-radius: 6px;
  padding: 24px;
  box-sizing: border-box;
}

.core-app-title {
  font-family: 'Kalam', cursive;
  font-size: 17px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 12px 0;
  border-bottom: 2px solid #EBF1F6;
  padding-bottom: 8px;
  display: inline-block;
}

.core-app-text {
  font-family: 'Kalam', cursive;
  font-size: 13.5px;
  color: #556070;
  line-height: 1.55;
  margin: 0;
}

/* Success Packs Grid inside Card 5 */
.success-packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 35px 0 10px 0;
}

.pack-box {
  background-color: #FAF9FB;
  border-radius: 8px;
  padding: 35px 24px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pack-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.pack-title {
  font-family: 'Kalam', cursive;
  font-size: 21px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 12px 0;
}

.pack-price {
  font-family: 'Kalam', cursive;
  font-size: 34px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 12px 0;
  line-height: 1;
}

.pack-hours {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #556070;
  line-height: 1.5;
  margin: 0;
}

.pack-hours span {
  font-size: 13px;
  color: #778396;
}

.pack-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(122, 79, 122, 0.1);
  margin: 20px 0;
}

.pack-includes-title {
  font-family: 'Kalam', cursive;
  font-size: 14.5px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 16px 0;
  text-align: left;
  width: 100%;
}

.pack-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pack-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pack-features li span {
  font-family: 'Kalam', cursive;
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.4;
}

/* Helpers */
.align-center {
  text-align: center;
}

.margin-top-30 {
  margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .core-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .success-packs-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .core-apps-grid {
    grid-template-columns: 1fr;
  }
}

/* Services Grid inside Card 7 */
.services-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.service-item-box {
  background-color: #FAF9FB;
  border-radius: 6px;
  padding: 22px 16px;
  text-align: center;
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #1F2937;
  box-sizing: border-box;
}

/* Centered text helper */
.centered-text {
  text-align: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark action button */
.pricing-card-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-dark {
  background-color: #111827; /* Very dark slate/black */
  color: #FFFFFF;
  border: 1.5px solid #111827;
}

.btn-dark:hover {
  background-color: transparent;
  color: #111827;
  border-color: #111827;
}

@media (max-width: 767px) {
  .pricing-details-section {
    padding: 50px 16px;
  }

  .pricing-card {
    padding: 30px 20px;
  }
  
  .pricing-card-title {
    font-size: 21px;
    margin-bottom: 16px;
  }
  
  .pricing-option-price {
    font-size: 34px;
  }
  
  .infrastructure-box {
    padding: 20px;
  }

  .services-items-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .service-item-box {
    padding: 16px;
  }
}
