.elementor-80 .elementor-element.elementor-element-3bf50e3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-8fe2b7d */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-accent:  #00e676;
  --gold-accent:   #f5c842;
  --bg-white:      #ffffff;
  --bg-dark:       #040e06;
  --bg-card:       #081408;
  --bg-strip:      #050f06;
  --border-green:  rgba(0, 230, 118, 0.18);
  --border-gold:   rgba(245, 200, 66, 0.2);
  --text-white:    #ffffff;
  --text-body:     rgba(255,255,255,0.72);
  --text-muted:    rgba(0, 230, 118, 0.5);
  --text-dim:      rgba(0, 230, 118, 0.22);
}

/* ── BASE ── */
html, body {
  font-family: 'Barlow', sans-serif;
  background: var(--bg-dark);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SCANLINE ── */
.scanline {
  position: fixed;
  top: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,230,118,0.12), transparent);
  animation: scan 6s linear infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes scan {
  from { top: -3px; }
  to   { top: 100vh; }
}

/* ══════════════════════════════
   WHITE LOGO HEADER
══════════════════════════════ */
.site-header {
  position: relative;
  z-index: 2;
  background: var(--bg-white);
  padding: 16px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.logo-link:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  text-shadow: 0 0 16px rgba(245,200,66,0.35);
}

/* ══════════════════════════════
   CONTACT SECTION
══════════════════════════════ */
.contact-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* grid pattern */
.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* center glow */
.contact-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(0,50,15,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── TOP DIVIDER ── */
.contact-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,230,118,0.25) 20%,
    rgba(0,230,118,0.25) 80%,
    transparent
  );
  margin-bottom: 0;
}

/* ── CONTACT CARD ── */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 64px 0 52px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}

/* LEFT */
.contact-card-left {
  padding-right: 20px;
  border-right: 1px solid var(--border-green);
}

.contact-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: 0.65;
  margin-bottom: 12px;
}

.contact-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.title-accent { color: var(--gold-accent); }

.contact-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 340px;
}

/* RIGHT */
.contact-card-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── CONTACT ITEMS ── */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-item:hover {
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 0 20px rgba(0,230,118,0.07);
}

.contact-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-email {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.contact-email:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

/* ── BOTTOM STRIP ── */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: var(--bg-strip);
  border: 1px solid var(--border-green);
  border-radius: 8px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s ease forwards;
}

.strip-text {
  font-size: 0.88rem;
  color: var(--text-body);
  letter-spacing: 0.01em;
}

.strip-text strong {
  color: var(--text-white);
  font-weight: 700;
}

.strip-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-accent);
  text-shadow:
    0 0 18px rgba(245,200,66,0.35),
    0 0 40px rgba(245,200,66,0.12);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .contact-card-left {
    border-right: none;
    border-bottom: 1px solid var(--border-green);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .contact-strip {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .contact-inner { padding: 0 24px; }
  .site-header   { padding: 14px 24px; }
  .logo-img      { height: 64px; }
}/* End custom CSS */