/* ========================================
   GameCycle Contact Page – Custom Styles
   Paste into: Elementor > Page Settings > Advanced > Custom CSS
   ======================================== */

/* === HERO SECTION === */
.gc-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #222222;
  color: #fff;
}

.gc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 350px at 50% 65%, rgba(15,129,39,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 250px 250px at 25% 30%, rgba(15,129,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #ffffff, transparent);
  pointer-events: none;
  z-index: 2;
}

.gc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.gc-hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 2rem;
  animation: gcHeroIn 0.9s ease-out;
}

@keyframes gcHeroIn {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

.gc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(15,129,39,0.12);
  border: 1px solid rgba(15,129,39,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0F8127;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.gc-hero-badge .gc-dot {
  width: 6px; height: 6px;
  background: #0F8127;
  border-radius: 50%;
  animation: gcPulse 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes gcPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(15,129,39,0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(15,129,39,0); }
}

.gc-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.gc-hero h1 .gc-accent { color: #0F8127; }

.gc-hero p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

/* === CONTACT CARDS === */
.gc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  animation: gcCardIn 0.8s ease-out 0.15s both;
}

@keyframes gcCardIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gc-card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}

.gc-card:hover {
  border-color: #0F8127;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07), 0 0 0 3px rgba(15,129,39,0.12);
  transform: translateY(-3px);
}

a.gc-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.gc-card-icon {
  width: 50px; height: 50px;
  margin: 0 auto 1rem;
  background: #e5f2e8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.gc-card:hover .gc-card-icon {
  background: #0F8127;
}

.gc-card-icon svg {
  width: 22px; height: 22px;
  stroke: #0F8127;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.35s ease;
}

.gc-card:hover .gc-card-icon svg { stroke: #fff; }

.gc-card-icon-wa svg {
  fill: #0F8127;
  stroke: none;
  transition: fill 0.35s ease;
}

.gc-card:hover .gc-card-icon-wa svg {
  fill: #fff;
  stroke: none;
}

.gc-card h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gc-card .gc-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.gc-card .gc-card-sub {
  font-size: 0.82rem;
  color: #777777;
  font-weight: 400;
}

/* === SECTION LABELS (shared) === */
.gc-section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0F8127;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gc-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.gc-section-desc {
  font-size: 0.88rem;
  color: #777777;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* === FLUENT FORMS OVERRIDES === */
.gc-form-wrapper .fluentform .ff-el-group {
  margin-bottom: 1.1rem;
}

.gc-form-wrapper .fluentform .ff-el-input--label label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.45rem;
}

.gc-form-wrapper .fluentform .ff-el-form-control {
  width: 100%;
  padding: 12px 14px;
  background: #f7f7f7;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  color: #1a1a1a;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  outline: none;
  box-shadow: none;
}

.gc-form-wrapper .fluentform .ff-el-form-control::placeholder {
  color: #999999;
}

.gc-form-wrapper .fluentform .ff-el-form-control:focus {
  border-color: #0F8127;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15,129,39,0.12);
}

.gc-form-wrapper .fluentform textarea.ff-el-form-control {
  resize: vertical;
  min-height: 120px;
}

.gc-form-wrapper .fluentform select.ff-el-form-control {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.gc-form-wrapper .fluentform .ff_submit_btn_wrapper {
  margin-top: 0.4rem;
}

.gc-form-wrapper .fluentform .ff-btn-submit {
  width: 100%;
  padding: 14px 16px;
  background: #0F8127;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gc-form-wrapper .fluentform .ff-btn-submit:hover {
  background: #0a6b1f;
  box-shadow: 0 6px 24px rgba(15,129,39,0.3);
  transform: translateY(-1px);
}

/* Fluent Forms 2-column row */
.gc-form-wrapper .fluentform .ff-t-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* === FAQ TEASER === */
.gc-faq-teaser {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  padding: 2rem;
}

.gc-faq-teaser .gc-section-title {
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.gc-faq-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

.gc-faq-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.gc-faq-item:first-of-type { padding-top: 0; }

.gc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.gc-faq-item:hover .gc-faq-question { color: #0F8127; }

.gc-faq-question .gc-chevron {
  width: 16px; height: 16px;
  stroke: #999999;
  fill: none;
  stroke-width: 2.5;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 0.8rem;
}

.gc-faq-item:hover .gc-chevron { stroke: #0F8127; transform: translateX(2px); }
.gc-faq-item.gc-open .gc-chevron { transform: rotate(90deg); stroke: #0F8127; }

.gc-faq-answer {
  font-size: 0.84rem;
  color: #777777;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gc-faq-item.gc-open .gc-faq-answer {
  max-height: 120px;
  padding-top: 0.7rem;
}

.gc-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.1rem;
  font-size: 0.84rem;
  color: #0F8127;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.gc-faq-link:hover { gap: 9px; }

/* === RESPONSE BOX === */
.gc-response-box {
  background: #e5f2e8;
  border: 1px solid rgba(15,129,39,0.15);
  border-radius: 14px;
  padding: 1.6rem;
  text-align: center;
}

.gc-response-box .gc-emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }

.gc-response-box .gc-response-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.gc-response-box .gc-response-sub {
  font-size: 0.8rem;
  color: #777777;
  line-height: 1.55;
}

.gc-response-bar {
  width: 70%; max-width: 180px;
  height: 4px;
  background: rgba(15,129,39,0.12);
  border-radius: 4px;
  margin: 0.9rem auto 0;
  overflow: hidden;
}

.gc-response-fill {
  height: 100%; width: 85%;
  background: linear-gradient(90deg, #0F8127, #0a6b1f);
  border-radius: 4px;
  animation: gcFillBar 2s ease-out 0.8s both;
}

@keyframes gcFillBar { from { width: 0; } to { width: 85%; } }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .gc-contact-cards { grid-template-columns: 1fr; gap: 0.9rem; }
  .gc-hero { min-height: 42vh; }
  .gc-form-wrapper .fluentform .ff-t-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gc-faq-teaser { padding: 1.5rem; }
}

/* === ELEMENTOR OVERRIDES === */
/* Remove default Elementor widget spacing for this page */
.gc-hero-container > .elementor-widget-wrap,
.gc-hero-container > .e-con-inner {
  padding: 0 !important;
}

/* === HERO TITLE TEXT HIGHLIGHT === */
.gc-hero-title .woodmart-title-container {
  text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}

.gc-hero-title .woodmart-after-title p,
.gc-hero-title .woodmart-after-title {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
}
