/* ================= HERO ================= */
.tt-hero{
  position: relative;
  padding:110px 20px 120px;
  color:#ffffff;

  /* ALL BACKGROUNDS IN ONE PAINT */
  background:
    radial-gradient(
      1000px 520px at 15% -10%,
      rgba(255,255,255,0.14),
      transparent 45%
    ),
    radial-gradient(
      900px 520px at 85% 15%,
      rgba(255,255,255,0.12),
      transparent 50%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.08),
      rgba(0,0,0,0.22)
    ),
    linear-gradient(
      135deg,
      #1f73e8 0%,
      #1a63c7 55%,
      #1554b0 100%
    );

  overflow: hidden;
}
	
.tt-hero-inner{
    position:relative;
    z-index:2;
    max-width:1180px;
    margin:auto;
    text-align:center;
}

.tt-hero h1{
    font-size:clamp(38px, 5vw, 56px);
    font-weight:800;
    letter-spacing:-0.025em;
    line-height:1.1;
    margin-bottom:18px;
    color:#ffffff;
}

.tt-hero p{
    font-size:18px;
    max-width:720px;
    margin:0 auto 44px;
    color:rgba(255,255,255,0.92);
}

/* ================= SEARCH FORM ================= */
.hp-search-form{
    display:flex;
    flex-wrap:nowrap;
    max-width:780px;
    margin:0 auto 34px;
    gap:12px;
    background:#ffffff;
    padding:14px;
    border-radius:18px;
    box-shadow:0 26px 60px rgba(0,0,0,0.30);
}

.input-wrap{
    position:relative;
    flex:1;
    min-width:0;
}

.input-wrap i{
    position:absolute;
    top:50%;
    left:14px;
    transform:translateY(-50%);
    color:#888;
    font-size:15px;
    pointer-events:none;
}

.input-wrap input{
    width:100%;
    padding:14px 14px 14px 40px;
    border:1px solid #e5e7eb;
    font-size:15px;
    outline:none;
    border-radius:12px;
}

.input-wrap input:focus{
    border-color:#1f73e8;
}

/* SEARCH BUTTON */
.searchb{
    background:linear-gradient(135deg, #1f73e8, #1a63c7);
    color:#fff;
    padding:0 34px;
    border:none;
    border-radius:12px;
    font-size:15px;
    cursor:pointer;
    white-space:nowrap;
    font-weight:600;
    transition:filter .3s ease;
    flex-shrink:0;
}

.searchb:hover{
    filter:brightness(1.08);
}

/* ================= YELLOW CTA ================= */
.tt-hero-cta{
    margin-top:38px;
}

.tt-btn-primary{
    display:inline-block;
    padding:16px 44px;
    border-radius:999px;
    background:linear-gradient(135deg, #fbbc04, #ffd24d);
    color:#000;
    font-weight:800;
    text-decoration:none !important;
    box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

.tt-hero-cta span{
    display:block;
    margin-top:12px;
    font-size:14px;
    opacity:0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width:768px){
    .tt-hero{
        padding:90px 18px 100px;
    }

    .hp-search-form{
        flex-direction:column;
        gap:10px;
    }

    .searchb{
        padding:14px;
        width:100%;
    }
}

.ttj-trade-wrap{
    position:relative;
}

.ttj-trade-dropdown-home{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-top:6px;
    max-height:220px;
    overflow-y:auto;
    display:none;
    z-index:50;
    text-align:left;
}

.ttj-trade-dropdown-home .ttj-trade-item{
    padding:10px 14px;
    cursor:pointer;
    color:#111;
}

.ttj-trade-dropdown-home .ttj-trade-item:hover{
    background:#f1f5f9;
}
