#contact-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(120, 130, 255, 0.25),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      #05060f 0%,
      #070a1a 50%,
      #04050c 100%
    );
}

/* ================= CONTACT HERO SECTION START ================= */

/* =========================
   CONTACT HERO SECTION
========================= */

#contact-page .contact-hero {
  min-height: 75vh;
  padding: 120px 0 100px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top center,
    rgba(248, 51, 44, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

#contact-page .contact-hero .container {
  max-width: 900px;
  padding: 0 20px;
}


/* Badge */
.contact-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-size: 14px;
  color: #8ea2ff;
  border: 1px solid rgba(142, 162, 255, 0.3);
  border-radius: 20px;
  background: rgba(142, 162, 255, 0.08);
  backdrop-filter: blur(6px);
}

/* Title */
.contact-title {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.contact-title span {
  color: #f8332c;
}

/* Subtitle */
.contact-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}



/* ================= CONTACT HERO SECTION END ================= */






 /* ================= CONTACT - CONTACT SECTION START =================  */

 /* =========================
   CONTACT SECTION
========================= */

#contact-page .contact-section {
  /* padding: 100px 0; */
  padding: 20px 0 100px;
}

.contact-section .contact-grid {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 6%;

  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 90px;
  align-items: center;
}


/* LEFT SIDE – VERTICAL STACK */
.contact-info {
  display: flex;
  flex-direction: column;
  transform: translateY(-40px);
}

.info-block {
  padding: 16px 0 24px;
}

.info-icon {
  margin-bottom: 14px;
}

.info-icon img {
  width: 22px;
  height: 22px;
}

.info-block h4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}

.info-block p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 260px;
  line-height: 1.6;
}

.info-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}


/* RIGHT SIDE FORM */
.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #ffffff;
  font-size: 15px;
}

.form-group textarea {
  resize: none;
  min-height: 160px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

/* Button */

#contact-page .contact-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  position: relative;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;

  /* outline gradient */
  background-image:
    linear-gradient(#05060f, #05060f),
    linear-gradient(135deg, #5f6cff, #c77dff);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  transition: transform 0.25s ease, color 0.25s ease;
}

#contact-page .contact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5f6cff, #c77dff);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

#contact-page .contact-btn:hover::before {
  opacity: 1;
}

#contact-page .contact-btn:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 12px 30px rgba(95,108,255,0.4); */
}



 /* ================= CONTACT - CONTACT SECTION END =================  */







  /* ================= AI DRIVEN SECURITY SECTION START =================  */

  #contact-page .ai-security-section {
  position: relative;
  padding: 140px 0;
  background-image: url("../assets/images/contact-page/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
#contact-page .ai-security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(7, 10, 20, 0.85) 0%,
      rgba(7, 10, 20, 0.65) 40%,
      rgba(7, 10, 20, 0.65) 60%,
      rgba(7, 10, 20, 0.85) 100%
    );
  z-index: 1;
}

/* Content above overlay */
#contact-page .ai-security-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}


#contact-page .ai-security-content h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 22px;
}


#contact-page .ai-security-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
}


  /* ================= AI DRIVEN SECURITY SECTION END =================  */



  .form-success {
  margin-top: 15px;
  font-size: 14px;
  color: #4ade80;
}
