/*--------------------------------------------------------------
# Contact Page - Pixeline Modern UI (FULL FILE)
--------------------------------------------------------------*/

.contact-page {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #fffdf5, #fff8e1);
  overflow: hidden;
  z-index: 1;
}

/* Animated glow background */
.contact-page::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ffd84d40, transparent 70%);
  top: -150px;
  right: -150px;
  animation: floatGlow 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* FLEX FIX FOR EQUAL HEIGHT COLUMNS */
.contact-page .row {
  display: flex;
  align-items: stretch;
}

/* LEFT & RIGHT SAME HEIGHT */
.contact-page__left,
.contact-page__right {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* LEFT SECTION */
.contact-page__left {
  animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-page__text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* CONTACT CARDS */
.contact-page__points {
  margin-top: 30px;
}

.contact-page__points li {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  height: 95px;
  width: 100%;

  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;

  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
  border-left: 4px solid #f7c948;
}

.contact-page__points li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* ICON */
.contact-page__points li .icon span {
  width: 55px;
  height: 55px;
  font-size: 20px;

  background: linear-gradient(135deg, #2d2c29, #5e594b);
  color: #111;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.3);
}

.contact-page__points li:hover .icon span {
  transform: rotate(10deg) scale(1.1);
}

/* CONTENT */
.contact-page__points li .content {
  margin-left: 18px;
}

.contact-page__points li .content p {
  font-size: 13px;
  color: #777;
  margin-bottom: 3px;
}

.contact-page__points li .content h4 {
  font-size: 16px;
  font-weight: 600;
}

.contact-page__points li .content h4 a {
  color: #111;
  transition: 0.3s ease;
}

.contact-page__points li .content h4 a:hover {
  color: #ffb703;
}

/* RIGHT SECTION BOX */
.contact-page__form-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 50px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1s ease-in-out;

  border: 1px solid rgba(255, 215, 77, 0.3);

  height: 100%;
}

/* SOCIAL GRID */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* SOCIAL CARDS - EQUAL SIZE */
.social-card {
  height: 110px;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 10px;

  border-radius: 14px;
  background: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  text-decoration: none;
  color: #111;

  transition: all 0.3s ease;

  border-left: 4px solid transparent;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.social-card i {
  font-size: 26px;
}

.social-card span {
  font-size: 14px;
  font-weight: 600;
}

/* BRAND COLORS */
.social-card.linkedin {
  border-color: #0a66c2;
}
.social-card.linkedin i {
  color: #0a66c2;
}

.social-card.instagram {
  border-color: #e1306c;
}
.social-card.instagram i {
  color: #e1306c;
}

.social-card.facebook {
  border-color: #1877f2;
}
.social-card.facebook i {
  color: #1877f2;
}

.social-card.google {
  border-color: #db4437;
}
.social-card.google i {
  color: #db4437;
}

/* INPUT FIX (if used anywhere) */
.contact-page__input-box input,
.contact-page__input-box textarea {
  width: 100%;
  border: 1px solid #eee;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-page__input-box input:focus,
.contact-page__input-box textarea:focus {
  border-color: #ffd84d;
  box-shadow: 0 0 10px rgba(255, 216, 77, 0.4);
  outline: none;
}

.contact-page__btn {
  background: linear-gradient(135deg, #ffd84d, #ffb703);
  color: #111;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 10px;
  border: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 183, 3, 0.3);
}

.contact-page__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(255, 183, 3, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-page .row {
    flex-direction: column;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-page__form-box {
    padding: 25px;
  }

  .contact-page__points li {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .contact-page__points li .content {
    margin-left: 0;
    margin-top: 10px;
  }
}
