/* Premium Section Wrapper */
.premium-contact {
  width: 90%;                /* not full width */
  max-width: 1300px;         /* keeps nice balance on large screens */
  margin: 80px auto;         /* centers the box nicely */
  background: linear-gradient(135deg, #0a0a4f 0%, #0028d6 40%, #0066ff 100%);
  color: #fff;
  border-radius: 30px;
  padding: 60px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.premium-contact::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(100px);
  border-radius: 50%;
}

/* Inner content layout */
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.contact-text p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 700px;
}

/* Button styling */
.modern-btn {
  background: rgb(255 248 248);
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.modern-btn:hover {
  background: #fff;
  color: #0028d6;
  transform: translateY(-2px);
}

/* Hover lift for the section */
.premium-contact:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
  .premium-contact {
    padding: 40px 30px;
    width: 95%;
  }

  .contact-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-text h2 {
    font-size: 24px;
  }

  .contact-text p {
    font-size: 15px;
  }

  .modern-btn {
    margin-top: 25px;
  }
}