.contact-info-section {
  background: #1c1f5a;
  padding: 80px 0;
}

.container4 {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  bottom: 25px;
  width: 4px;
  background: #ff5a1f;
  border-radius: 4px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 90, 31, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff5a1f;
}

/* WhatsApp Green Icon */
.whatsapp-icon {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-card span {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}

/* Remove unwanted extra icon */
.icon-box::before,
.icon-box::after {
  content: none !important;
  display: none !important;
}

/* Also hide any unwanted spans/icons */
.icon-box span {
  display: none !important;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================
   CONTACT PAGE - UPDATED CLEAN PREMIUM
   Primary: #1C1F5A
   Accent: #ff5a1f
===================================== */

.contact-page12 {
  background: #1c1f5a;
  padding: 100px 0;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.contact-page12::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.18), transparent 70%);
  top: -120px;
  right: -120px;
  z-index: 0;
}

.contact-page12 .container {
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */

.sec-title__tagline h4,
.sec-title__title {
  color: #ffffff;
}

.contact-page12__top-content-text1 p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* SOCIAL ICONS */

.social-links {
  margin-top: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff5a1f;
  transform: translateY(-4px);
}

/* =====================================
   FORM CARD
===================================== */

.contact-page12__top-form {
  background: rgba(255, 255, 255, 0.06);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

/* =====================================
   INPUTS
===================================== */

.input-box {
  margin-bottom: 24px;
}

.input-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Inputs */

.input-box input,
.input-box textarea,
.input-box select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  background: #f8f9fc;
  font-size: 14px;
  color: #1c1f5a;
  transition: all 0.3s ease;
  outline: none;
}

/* Placeholder */

.input-box input::placeholder,
.input-box textarea::placeholder {
  color: #9aa0a6;
}

/* Focus */

.input-box input:focus,
.input-box textarea:focus,
.input-box select:focus {
  border-color: #ff5a1f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

/* Textarea */

.input-box textarea {
  min-height: 140px;
  resize: vertical;
}

/* =====================================
   BUTTON
===================================== */

.thm-btn {
  position: relative;

  background: linear-gradient(135deg, #ff5a1f, #ff7a45);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thm-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 90, 31, 0.35);
}

/* Loader */

.btn-loader {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.thm-btn.loading .btn-text {
  visibility: hidden;
}

.thm-btn.loading .btn-loader {
  display: block;
}

/* =====================================
   SUCCESS POPUP
===================================== */
/* ===============================
   FORM CONTAINER
================================ */
.contact-page12__top-form {
  background: transparent;
  padding: 20px;
}

/* ===============================
   INPUT BOX
================================ */
.input-box {
  margin-bottom: 20px;
}

.input-box label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

/* ===============================
   INPUT + SELECT + TEXTAREA
================================ */
.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  background: #e5e5e5;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* focus effect */
.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.3);
}

/* ===============================
   TEXTAREA
================================ */
.input-box textarea {
  height: 140px;
  resize: none;
  border-radius: 10px;
}

/* ===============================
   BUTTON
================================ */
.thm-btn {
  background: linear-gradient(90deg, #ff5a1f, #ff7a3d);
  color: #fff;
  padding: 5px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.thm-btn:hover {
  background: linear-gradient(90deg, #ff7a3d, #ff5a1f);
}

/* ===============================
   SUCCESS / ERROR MESSAGE
================================ */
#formMessage {
  display: none;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

#formMessage.success {
  color: #28a745;
}

#formMessage.error {
  color: #ff3b3b;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .input-box input,
  .input-box select,
  .input-box textarea {
    font-size: 13px;
  }

  .thm-btn {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   TRACK BOX - FINAL UI
========================= */
.track-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 14px;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  /* Border Setup */
  border: 2px solid transparent;
  background-clip: padding-box;

  position: relative;
  transition: all 0.3s ease;
}

/* 🔥 Gradient Border Layer */
.track-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;

  background: linear-gradient(135deg, #fd5523, #1c1f5a);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none; /* ✅ FIX CLICK ISSUE */
}

/* Hover Effect */
.track-box:hover {
  box-shadow: 0 0 20px rgba(253, 85, 35, 0.35);
}

/* Focus Effect */
.track-box:focus-within {
  box-shadow: 0 0 0 2px rgba(253, 85, 35, 0.3);
}

/* =========================
   ICON
========================= */
.track-icon {
  display: flex;
  align-items: center;
}

/* =========================
   INPUT
========================= */
.track-box input {
  border: none;
  outline: none;
  background: transparent;

  color: #ffffff;
  font-size: 15px;
  width: 180px;
}

/* Placeholder */
.track-box input::placeholder {
  color: white;
}

/* =========================
   BUTTON
========================= */
.track-box button {
  display: flex;
  align-items: center;
  gap: 6px;

  background: #fd5523;
  color: #ffffff;

  border: none;
  padding: 7px 16px;
  border-radius: 10px;

  cursor: pointer;
  font-size: 13px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Button Hover */
.track-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(188, 64, 64, 0.3);
}

/* Button Click */
.track-box button:active {
  transform: scale(0.95);
}

/* =========================
   SAFETY (CLICK FIX)
========================= */
.main-header-one__bottom-right {
  position: relative;
  z-index: 10;
}

.track-box {
  z-index: 10;
}

.track-box button {
  z-index: 11;
  pointer-events: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .track-box input {
    width: 140px;
  }
}

/* Mobile Hide */
@media (max-width: 768px) {
  .track-box {
    display: none;
  }
}
