/*
Theme Name: Elite Binary Traders
Theme URI: https://elitebinarytraders.com
Author: Elite Binary Traders
Author URI: https://elitebinarytraders.com
Description: A professional binary options trading & account management theme built for Elementor. Features dark design, green accents, and full-page template for trading services.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elite-binary-traders
Tags: elementor, one-page, finance, trading, dark
*/

/* =============================================
   ELITE BINARY TRADERS — GLOBAL STYLES
   ============================================= */

:root {
  --ebt-black:       #0a0d0f;
  --ebt-dark:        #111517;
  --ebt-card:        #161b20;
  --ebt-border:      #1e2630;
  --ebt-green:       #22c55e;
  --ebt-green-dark:  #16a34a;
  --ebt-green-glow:  rgba(34,197,94,0.15);
  --ebt-white:       #f0f4f8;
  --ebt-muted:       #8a9ab0;
  --ebt-accent:      #facc15;
  --ebt-font-head:   'Barlow', 'Segoe UI', sans-serif;
  --ebt-font-body:   'Inter', 'Segoe UI', sans-serif;
  --ebt-radius:      12px;
  --ebt-shadow:      0 4px 24px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--ebt-black);
  color: var(--ebt-white);
  font-family: var(--ebt-font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ebt-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ebt-green-dark); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ebt-font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ebt-white);
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--dark  { background: var(--ebt-dark); }
.section--card  { background: var(--ebt-card); }
.text-green     { color: var(--ebt-green) !important; }
.text-muted     { color: var(--ebt-muted); }
.text-center    { text-align: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: all .25s; border: none;
}
.btn-primary {
  background: var(--ebt-green); color: #0a0d0f;
}
.btn-primary:hover { background: var(--ebt-green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.35); }
.btn-outline {
  background: transparent; color: var(--ebt-green);
  border: 2px solid var(--ebt-green);
}
.btn-outline:hover { background: var(--ebt-green); color: #0a0d0f; }

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,13,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ebt-border);
  transition: background .3s;
}
#site-header .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--ebt-font-head);
  font-size: 22px; font-weight: 800;
  color: var(--ebt-white);
  display: flex; align-items: center; gap: 10px;
}
.site-logo span { color: var(--ebt-green); }
.site-logo .logo-badge {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ebt-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #0a0d0f;
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  color: var(--ebt-muted); font-size: 14px; font-weight: 500;
  transition: color .2s; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--ebt-green);
  transform: scaleX(0); transition: transform .2s;
}
.main-nav a:hover { color: var(--ebt-white); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ebt-white); border-radius: 2px; transition: all .3s; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--ebt-dark); flex-direction: column; justify-content: flex-start;
    padding: 32px 24px; gap: 24px;
    transform: translateX(100%); transition: transform .3s;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 18px; }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--ebt-black);
  position: relative; overflow: hidden;
  padding-top: 72px;
}
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ebt-green-glow); border: 1px solid rgba(34,197,94,0.3);
  padding: 6px 16px; border-radius: 50px; font-size: 13px;
  color: var(--ebt-green); font-weight: 600; margin-bottom: 20px;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--ebt-green); }
.hero-desc { color: var(--ebt-muted); font-size: 17px; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: var(--ebt-card);
  border: 1px solid var(--ebt-border);
  border-radius: var(--ebt-radius);
  padding: 36px;
  box-shadow: var(--ebt-shadow);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--ebt-green), var(--ebt-accent));
}
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.hero-stat { text-align: center; }
.hero-stat .num {
  font-size: 42px; font-weight: 900; color: var(--ebt-green);
  font-family: var(--ebt-font-head);
  line-height: 1;
}
.hero-stat .label { font-size: 13px; color: var(--ebt-muted); margin-top: 4px; }

.hero-chart-placeholder {
  width: 100%; height: 120px;
  background: linear-gradient(135deg, var(--ebt-green-glow), transparent);
  border-radius: 8px; border: 1px solid var(--ebt-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ebt-green); font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
}
/* animated chart bars */
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; padding: 0 16px; }
.chart-bars .bar {
  flex: 1; background: var(--ebt-green);
  border-radius: 3px 3px 0 0; opacity: 0.7;
  animation: barGrow 1.5s ease forwards;
}
@keyframes barGrow { from{height:0} }
.chart-bars .bar:nth-child(1) { height: 40%; animation-delay:.1s }
.chart-bars .bar:nth-child(2) { height: 65%; animation-delay:.2s }
.chart-bars .bar:nth-child(3) { height: 50%; animation-delay:.3s }
.chart-bars .bar:nth-child(4) { height: 80%; animation-delay:.4s }
.chart-bars .bar:nth-child(5) { height: 60%; animation-delay:.5s }
.chart-bars .bar:nth-child(6) { height: 90%; animation-delay:.6s; opacity:1 }
.chart-bars .bar:nth-child(7) { height: 75%; animation-delay:.7s }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
}

/* =============================================
   PHONE CTA STRIP
   ============================================= */
#phone-cta {
  background: var(--ebt-green);
  padding: 28px 0;
}
#phone-cta .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.phone-left h3 { color: #0a0d0f; font-size: 24px; font-weight: 800; }
.phone-left p { color: rgba(10,13,15,0.7); font-size: 15px; margin-top: 4px; }
.phone-number {
  font-size: 28px; font-weight: 900; color: #0a0d0f;
  font-family: var(--ebt-font-head);
  display: flex; align-items: center; gap: 12px;
}
.phone-number .icon { font-size: 24px; }

/* =============================================
   SERVICES
   ============================================= */
#services .section-tag {
  color: var(--ebt-green); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
#services .section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
#services .section-desc { color: var(--ebt-muted); max-width: 560px; margin: 0 auto 56px; font-size: 16px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--ebt-card); border: 1px solid var(--ebt-border);
  border-radius: var(--ebt-radius); padding: 36px 28px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--ebt-green);
  box-shadow: 0 12px 40px rgba(34,197,94,0.15);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--ebt-green);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--ebt-green-glow); border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--ebt-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service-link {
  color: var(--ebt-green); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* =============================================
   FEATURES / USP
   ============================================= */
#features {
  background: var(--ebt-dark);
}
#features .features-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 768px) { #features .features-inner { grid-template-columns: 1fr; } }

.features-left h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.features-left p { color: var(--ebt-muted); margin-bottom: 32px; }
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 10px;
  border: 1px solid var(--ebt-border); background: var(--ebt-black);
  transition: border-color .2s;
}
.feature-item:hover { border-color: var(--ebt-green); }
.feature-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ebt-green-glow); border: 1px solid var(--ebt-green);
  display: flex; align-items: center; justify-content: center;
  color: var(--ebt-green); font-size: 14px; flex-shrink: 0;
}
.feature-text h4 { font-size: 15px; margin-bottom: 4px; }
.feature-text p { font-size: 13px; color: var(--ebt-muted); margin: 0; }

.features-right {
  background: var(--ebt-card); border: 1px solid var(--ebt-border);
  border-radius: var(--ebt-radius); padding: 40px;
  box-shadow: var(--ebt-shadow);
}
.profit-highlight {
  text-align: center; padding: 28px 0;
  border-bottom: 1px solid var(--ebt-border); margin-bottom: 28px;
}
.profit-highlight .pct {
  font-size: 72px; font-weight: 900; color: var(--ebt-green);
  font-family: var(--ebt-font-head); line-height: 1;
}
.profit-highlight p { color: var(--ebt-muted); margin-top: 8px; font-size: 14px; }
.feature-bullets { display: flex; flex-direction: column; gap: 16px; }
.feature-bullet {
  display: flex; align-items: center; gap: 12px; font-size: 14px;
}
.feature-bullet::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: var(--ebt-green); color: #0a0d0f;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}

/* =============================================
   COPY TRADING CTA
   ============================================= */
#copy-trading {
  background: linear-gradient(135deg, var(--ebt-black) 0%, #0d1a12 100%);
  border-top: 1px solid var(--ebt-border);
  border-bottom: 1px solid var(--ebt-border);
}
#copy-trading .inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 768px) { #copy-trading .inner { grid-template-columns: 1fr; } }
#copy-trading h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
#copy-trading p { color: var(--ebt-muted); margin-bottom: 32px; }
.copy-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ebt-muted); }
.perk span { color: var(--ebt-green); font-weight: 700; font-size: 16px; }

.copy-visual {
  background: var(--ebt-card); border: 1px solid var(--ebt-border);
  border-radius: var(--ebt-radius); padding: 28px; position: relative;
}
.copy-visual h4 { font-size: 14px; color: var(--ebt-muted); margin-bottom: 20px; }
.trade-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--ebt-border); font-size: 13px;
}
.trade-row:last-child { border-bottom: none; }
.trade-row .asset { font-weight: 600; }
.trade-row .gain { color: var(--ebt-green); font-weight: 700; }
.trade-row .loss { color: #f87171; font-weight: 700; }

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { background: var(--ebt-black); }
#testimonials .section-title { text-align: center; font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
#testimonials .section-desc { text-align: center; color: var(--ebt-muted); margin-bottom: 56px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--ebt-card); border: 1px solid var(--ebt-border);
  border-radius: var(--ebt-radius); padding: 28px;
  transition: border-color .25s;
}
.testi-card:hover { border-color: rgba(34,197,94,0.4); }
.testi-stars { color: var(--ebt-accent); font-size: 14px; margin-bottom: 16px; }
.testi-text { color: var(--ebt-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ebt-green-glow); border: 2px solid var(--ebt-green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--ebt-green); font-size: 15px;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--ebt-muted); }

/* =============================================
   BLOG / RESOURCES
   ============================================= */
#resources { background: var(--ebt-dark); }
#resources .section-title { font-size: clamp(26px, 4vw, 38px); margin-bottom: 8px; }
#resources .section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--ebt-black); border: 1px solid var(--ebt-border);
  border-radius: var(--ebt-radius); overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.blog-card:hover { border-color: var(--ebt-green); transform: translateY(-4px); }
.blog-thumb {
  height: 180px; background: var(--ebt-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--ebt-muted); font-size: 13px;
  background: linear-gradient(135deg, #111 0%, #1a2e1a 100%);
  font-size: 36px;
}
.blog-body { padding: 20px; }
.blog-cat {
  font-size: 11px; font-weight: 700; color: var(--ebt-green);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.blog-card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: var(--ebt-muted); }

/* =============================================
   FOOTER
   ============================================= */
#site-footer { background: var(--ebt-card); border-top: 1px solid var(--ebt-border); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding: 72px 0 48px;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px)  { .footer-main { grid-template-columns: 1fr; } }

.footer-brand .site-logo { margin-bottom: 16px; font-size: 18px; }
.footer-brand p { color: var(--ebt-muted); font-size: 14px; max-width: 300px; margin-bottom: 20px; }
.footer-contact p { font-size: 14px; display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--ebt-muted); }
.footer-contact strong { color: var(--ebt-white); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--ebt-white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--ebt-muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--ebt-green); }

.footer-bottom {
  border-top: 1px solid var(--ebt-border); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ebt-muted);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--ebt-black); border: 1px solid var(--ebt-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--ebt-muted); font-size: 16px;
  transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--ebt-green); color: var(--ebt-green); }

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 26px; cursor: pointer;
  animation: floatPulse 3s ease-in-out infinite;
  text-decoration: none;
}
@keyframes floatPulse {
  0%,100%{ box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%{ box-shadow: 0 4px 40px rgba(37,211,102,0.75); transform: scale(1.05); }
}

/* =============================================
   ELEMENTOR OVERRIDES
   ============================================= */
.elementor-section { position: relative; }
.elementor-widget-heading .elementor-heading-title { line-height: 1.15; }

/* ensure Elementor pages get full viewport height treatment */
.elementor-page #site-header { background: rgba(10,13,15,0.95); }
