#countries {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0f1f, #004AAD);
    color: #fff;
}

#countries h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #fff;
}

#countries .image-container img {
    width: 100%;          /* full width of container */
    max-width: 1200px;    /* prevent oversized on big screens */
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



/* Modal Background */
.netvexa-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* darker overlay to match site */
}

/* Modal Box */
.netvexa-modal-content {
    background-color: #0a0f1f;
    color: #fff;
    margin: 8% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    text-align: left;
}

/* Close Button */
.netvexa-close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #ffcc00;
    cursor: pointer;
    transition: color 0.3s ease;
}

.netvexa-close:hover {
    color: #fff;
}

/* Location List Items */
.netvexa-location-list li {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center; /* vertically centers the text and button */
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.netvexa-location-list li:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Order Now Buttons */
.netvexa-location-list button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.netvexa-location-list button:hover {
    background-color: #218838;
}

/* Center Button Container */
.netvexa-button-container {
    text-align: center;
    margin-top: 20px;
}

/* Default Order Now Button */
.netvexa-cta-button {
    background-color: #28a745; /* active green */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center; /* centers text vertically */
    justify-content: center;
}
.netgbl-cta-button {
    background-color: #28a745 !important;  /* Force green background */
    color: white !important;  /* Ensure white text */
    padding: 14px 28px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
    border: none;  /* Remove any unwanted borders */
      cursor: pointer;
}
/* Hover effect */
.netgbl-cta-button:hover {
    background-color: #218838 !important; /* Ensure hover effect works */
    color: white !important;
} 
/* Hover effect */
.netvexa-cta-button:hover {
    background-color: #218838 !important; /* Ensure hover effect works */
    color: white !important;
}
/* Unavailable State */
.netvexa-cta-button.unavailable {
    background-color: #6c757d; /* grey */
    cursor: not-allowed;
    pointer-events: none; /* disables click */
    color: #fff;
}

/* Optional: smaller text for grey button */
.netvexa-cta-button.unavailable::after {
    content: "Unavailable";
}
.netvexa-billing-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.netvexa-footer-info {
    text-align: center;
    margin-top: 15px;
}

.netvexa-powered-by {
    color: #fff;
    font-size: 12px;
}
.netvexa-cta-button.disabled {
    pointer-events: none; /* still detect click for JS check */
    opacity: 0.6;
    cursor: not-allowed;
}
.price-highlight {
  position: relative;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: white;
  text-align: center;
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  display: inline-block;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.price-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.price-highlight h2 {
  font-size: clamp(1rem, 2.5vw, 1.2rem); /* scales with screen */
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Shine effect */
.price-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-25deg);
  z-index: 1;
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* Extra tweak for small screens */
@media (max-width: 480px) {
  .price-highlight {
    padding: 8px 16px;
  }

  .price-highlight h2 {
    font-size: 1rem;
  }
}
