/* ============================================================
   CS GROWTH LAB — CONTACT PAGE PREMIUM CSS v2.0
   Split layout with glass form
   ============================================================ */

/* Contact page body */
body.page-template-default.page-id-contact,
body[class*="contact"] {
  background: var(--csgl-black, #080808) !important;
}

/* Contact hero section */
.csgl-contact-hero {
  padding: 160px 0 80px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.csgl-contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.10) 0%, transparent 65%);
  pointer-events: none;
}

/* Contact split layout */
.csgl-contact-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .csgl-contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Contact info panel */
.csgl-contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.csgl-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.csgl-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.csgl-contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--csgl-blue-light, #60a5fa);
}

.csgl-contact-info-text h4 {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,0.50) !important;
  margin-bottom: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}
.csgl-contact-info-text p,
.csgl-contact-info-text a {
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.csgl-contact-info-text a:hover {
  color: var(--csgl-blue-light, #60a5fa) !important;
}

/* Social links */
.csgl-social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.csgl-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.50);
  transition: all 0.3s ease;
  text-decoration: none;
}
.csgl-social-link:hover {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.25);
  color: var(--csgl-blue-light, #60a5fa);
  transform: translateY(-2px);
}
.csgl-social-link svg {
  width: 16px;
  height: 16px;
}

/* Contact glass form */
.csgl-contact-form-wrap {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 48px !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05) !important;
  position: relative;
  overflow: hidden;
}
.csgl-contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.40), transparent);
}

@media (max-width: 768px) {
  .csgl-contact-form-wrap {
    padding: 28px 20px !important;
  }
}
