/* ==============================================
   ADDITIONAL PROFESSIONAL ENHANCEMENTS
   Add these to make the site look more premium
   ============================================== */

/* WhatsApp Icon SVG (Real WhatsApp Logo) */
.whatsapp-float {
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Trust Badges Section */
.trust-badges {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.trust-badge:hover {
  transform: translateY(-5px);
}

.trust-badge-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}

.trust-badge h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.trust-badge p {
  font-size: 12px;
  color: var(--gray);
}

/* Stats Counter Section */
.stats-banner {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  padding: 50px 0;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-item p {
  font-size: 16px;
  opacity: 0.95;
}

/* Call to Action Cards */
.cta-cards {
  padding: 60px 0;
  background: var(--light-gray);
}

.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s;
  border-top: 4px solid transparent;
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.cta-card.primary {
  border-top-color: var(--magenta);
}

.cta-card.secondary {
  border-top-color: var(--orange);
}

.cta-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.cta-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.cta-card p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.7;
}

.cta-card .btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(142, 3, 73, 0.3);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s;
}

.feature-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
}

.feature-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Coverage Comparison Table */
.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  color: white;
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--light-gray);
}

.comparison-table tr:hover {
  background: rgba(142, 3, 73, 0.02);
}

.comparison-table .check {
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
}

.comparison-table .cross {
  color: #ef4444;
  font-weight: bold;
  font-size: 18px;
}

/* Process Steps */
.process-steps {
  padding: 60px 0;
  background: var(--light-gray);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--orange);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: white;
  border: 4px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--magenta);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-item h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--dark);
}

.step-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* FAQ Categories Pills */
.faq-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.faq-pill {
  padding: 10px 20px;
  background: white;
  border: 2px solid var(--light-gray);
  border-radius: 25px;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.faq-pill:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.faq-pill.active {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  color: white;
  border-color: transparent;
}

/* Breadcrumb Navigation */
.breadcrumb {
  padding: 20px 0;
  background: var(--light-gray);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

.breadcrumb span {
  margin: 0 10px;
  color: var(--gray);
}

/* Product Detail Hero */
.product-hero {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.product-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.product-hero-text .subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 30px;
}

.product-hero-text .features-list {
  list-style: none;
  margin-bottom: 30px;
}

.product-hero-text .features-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.product-hero-text .features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
}

.product-hero-cta {
  display: flex;
  gap: 15px;
}

.product-hero-cta .btn {
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.product-hero-cta .btn-primary {
  background: white;
  color: var(--magenta);
}

.product-hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-hero-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.product-hero-cta .btn-secondary:hover {
  background: white;
  color: var(--magenta);
}

.product-hero-image {
  text-align: center;
}

.product-hero-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.benefit-card:hover {
  border-color: var(--magenta);
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.benefit-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Pricing Cards */
.pricing-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  border: 3px solid transparent;
}

.pricing-card.featured {
  border-color: var(--magenta);
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(142, 3, 73, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--dark);
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--magenta);
  margin-bottom: 5px;
}

.pricing-period {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 18px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(142, 3, 73, 0.3);
}

/* Sticky Contact Bar */
.sticky-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 15px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-contact-bar.visible {
  transform: translateY(0);
}

.sticky-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sticky-contact-text h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--dark);
}

.sticky-contact-text p {
  font-size: 13px;
  color: var(--gray);
}

.sticky-contact-actions {
  display: flex;
  gap: 15px;
}

.sticky-contact-actions .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.sticky-contact-actions .btn-whatsapp {
  background: #25D366;
  color: white;
}

.sticky-contact-actions .btn-call {
  background: var(--orange);
  color: white;
}

/* Responsive */
@media (max-width: 968px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-cards-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .product-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero-text h1 {
    font-size: 36px;
  }

  .product-hero-cta {
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .sticky-contact-content {
    flex-direction: column;
    gap: 15px;
  }

  .sticky-contact-actions {
    width: 100%;
  }

  .sticky-contact-actions .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-text h1 {
    font-size: 28px;
  }

  .product-hero-cta {
    flex-direction: column;
  }

  .product-hero-cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==============================================
   IMAGE ICON STYLES
   Styles for PNG/WebP image icons replacing emojis
   ============================================== */

/* Product Icons - Large (128px) */
.product-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.product-card .product-icon img {
  width: 80px;
  height: 80px;
}

/* Product Hero Icon - Extra Large */
.product-hero-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* Benefit/Feature Icons - Medium (48-64px) */
.benefit-icon img,
.feature-icon img,
.coverage-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* When benefit-icon is a span (inline) */
span.benefit-icon img,
span.coverage-icon img {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Contact Icons - Small (32-48px) */
.contact-icon img,
.icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Reason Icons */
.reason-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Vision/Mission Icons */
.vm-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Value Icons */
.value-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* CTA Card Icons */
.cta-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Trust Badge Icons */
.trust-badge-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Logo Icon */
.logo-icon img,
.logo-icon-loading img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Partner/Operator Logos */
.partner-logo img,
.operator-logo img {
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

/* Inline Icons (in text/links) */
.inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inline-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
}

/* Button Icons */
.btn-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
}

/* Responsive Image Icons */
@media (max-width: 768px) {
  .product-icon img {
    width: 56px;
    height: 56px;
  }

  .product-card .product-icon img {
    width: 64px;
    height: 64px;
  }

  .product-hero-icon img {
    width: 80px;
    height: 80px;
  }

  .benefit-icon img,
  .feature-icon img,
  .coverage-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .product-icon img {
    width: 48px;
    height: 48px;
  }

  .product-card .product-icon img {
    width: 56px;
    height: 56px;
  }

  .product-hero-icon img {
    width: 64px;
    height: 64px;
  }
}
